/* -------------------- common -------------------- */


html {
    font-size: 62.5%;
    /* 10px */
}

body {
    margin: 0;
    padding: 0;
    word-break: normal;
    box-sizing: border-box;
    background-color: #fff;

    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    cursor: pointer;
}

.container {
    overflow: hidden;
}

.wrapper {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 80%;
    max-width: 1100px;
    overflow: hidden;
}

.in_wrapper {
    margin: 0 auto;
    width: 80%;
    max-width: 1000px;
    overflow: hidden;
}

a {
    cursor: pointer;
}

.pc_n {
    display: none;
}


ol,
ul {
    list-style: none;
}

/* h2 h3 */

h2 .h2_sub {
    font-size: 4rem;
    color: #39aaf5;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

h2 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: clamp(4rem, 5vw, 5rem);
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

/* text */
.sec04_txt,
.sec03_txt,
.sec05_txt,
.sec08_txt {
    text-align: center;
    font-weight: 600;
    line-height: 7rem;
    font-size: 3.5rem;
}

/*padding*/

.pd_t20 {
    padding-top: 2rem;
}

.pd_b20 {
    padding-bottom: 2rem;
}

.pd_t30 {
    padding-top: 3rem;
}

.pd_b30 {
    padding-bottom: 3rem;
}

.pd_t40 {
    padding-top: 4rem;
}

.pd_b40 {
    padding-bottom: 4rem;
}

.pd_t50 {
    padding-top: 5rem;
}

.pd_b50 {
    padding-bottom: 5rem;
}

.pd_t60 {
    padding-top: 6rem;
}

.pd_b60 {
    padding-bottom: 6rem;
}

.pd_t100 {
    padding-top: 10rem;
}

.pd_b100 {
    padding-bottom: 10rem;
}

/*font-size*/
.notes {
    font-size: 1.2rem;
}

.px16 {
    font-size: 1.6rem;
}

.px20 {
    font-size: 2rem;
}

.px25 {
    font-size: 2.5rem;
}

.px30 {
    font-size: 3rem;
}

.px35 {
    font-size: 3.5rem;
}

.px40 {
    font-size: 4rem;
}

.px50 {
    font-size: 5rem;
}

.px55 {
    font-size: 5.5rem;
}

.px60 {
    font-size: 6rem;
}

.px65 {
    font-size: 6.5rem;
}

.px70 {
    font-size: 7rem;
}

.px80 {
    font-size: 8rem;
}

.emp {
    font-size: 1.5em;
}

/* font-weight */
.w5 {
    font-weight: 500;
}

.w6 {
    font-weight: 600;
    /*midi*/
}

.w7 {
    font-weight: 700;
    /*bold*/
}

.w8 {
    font-weight: 800;
    /*black*/
}

.w8 {
    font-weight: 900;
}

/* font-color */
.wht {
    color: #fff;
}

.ylw {
    color: #fff100;
}

.gray {
    color: #333;
}

.blue {
    color: #1e3a8a;
}

.orange {
    color: #f97d28;
}

.orange_gradient {
    background: linear-gradient(180deg, #facc00 0%, #f98d00 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

/* font empashis*/
.dot_txt {
    text-emphasis: dot;
}

/* deco */
.highlight {
    text-decoration: underline;
    text-underline-offset: -0.1em;
    text-decoration-thickness: 0.4em;
    text-decoration-color: #febf13e0;
    text-decoration-skip-ink: none;
}

.highlight2 {
    text-decoration: underline;
    text-underline-offset: -0.05em;
    text-decoration-thickness: 0.4em;
    text-decoration-color: #f36404;
    text-decoration-skip-ink: none;
}

/* position */
.txt_c {
    text-align: center;
}

/* background */
#sec01::before {
    background-color: #1b3564;
    background-image: url(../img/trouble_bg.webp);
    content: "";
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}


/* hover*/
.hover-opacity {
    transition: opacity 0.15s ease, filter 0.15s ease;
}

.hover-opacity:hover {
    opacity: 0.6;
    filter: brightness(0.9);
}

/* -------------------- Header -------------------- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffe8;
    z-index: 9999;
    padding: 10px 0;
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* wrapper の padding をヘッダー内では無効化 */
.header .wrapper {
    padding-top: 0;
    padding-bottom: 0;
}

/* ロゴ */
.header__logo img {
    height: 60px;
    width: auto;
}

/* メニュー */
.header__menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu a {
    text-decoration: none;
}

/* 問い合わせ + CTA グループ */
.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;

    @media (max-width: 767px) {

        gap: 15px;

    }

}

.header__actions .header__tel {
    font-size: 1.5rem;
}

/* Small CTA */
a.btn--sm {
    color: #fff;
    background-color: #06C755;
    font-size: 2rem;
}

a.btn-c {
    position: relative;
    padding: 2rem 2rem 2rem 2rem;
    border-radius: 100vh;
}

a.btn-c i.fa {
    margin-right: 1rem;
}


/* -------------------- CTA -------------------- */
/* CTA-top */
.cta-top {
    width: 100%;
    max-width: 960px;
    height: auto;
    object-fit: contain;
}

/* CTA-main */
.btn_bg,
a.btn_bg,
button.btn_bg {
    line-height: 1.2;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border-radius: 0.5rem;
}

.btn-wrap-pc-sp {
    max-width: 435px;
    margin: 0 auto 20px;
}

a.btn-pc-sp {
    line-height: 1.4;
    width: 49.5%;
    padding: 1.25rem 0;
    color: #fff;
}

a.btn--line {
    display: block;
    padding: 1.5rem 0;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    border-radius: 100vh;
    background: #06C755;
    -webkit-box-shadow: 0 5px 0 #06C755;
    box-shadow: 0 10px 0 #00803aa2;
}

a.btn--line i.fa-position-left {
    font-size: 8rem;
    left: 5rem;
}

a.btn--line:hover {
    color: #fff;
}

.fa-position-left {
    position: absolute;
    top: calc(50% - 0.5em);
    left: 1rem;
}

.fa-position-right {
    font-size: 5rem;
    position: absolute;
    top: calc(50% - 0.5em);
    right: 3rem;
}

.cta-first {
    font-size: 4rem;
    font-weight: 600;
}

.cta-second {
    font-size: 3rem;
    display: block;
    padding: 20px 0 0 0;
    font-weight: 700;

    @media (max-width: 767px) {
        padding: 10px 0 0 0;
    }

}

/* CTA animation */
.btn--line {
    animation: cta-bounce 3s ease-in-out infinite;
}

/* hover中は止める（押しやすさUP） */
.btn--line:hover {
    animation-play-state: paused;
}

/* バウンド定義 */
@keyframes cta-bounce {

    0%,
    88%,
    100% {
        transform: translateY(0);
    }

    92% {
        transform: translateY(6px);
    }

    96% {
        transform: translateY(0);
    }
}

/* CTA-btm */
.cta_tel {
    text-align: center;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 4rem);
    letter-spacing: 1px;
}

.fv .cta_tel {
    text-align: center;
    text-shadow:
        0 0 7px rgba(0, 0, 0);
}

/* -------------------- FV -------------------- */
.fv {
    position: relative;
    width: 100%;
    height: 1200px;
    /* ← KVの絶対高さ（例） */
    background-image: url("../img/mv.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    overflow: hidden;
}

/* =========================
   FV 上部H1エリア
========================= */
.fv-headline .wrapper {
    width: 100%;
    /* Headerと同じ幅 */
    padding-top: 0;
    padding-bottom: 0;
}

.fv-headline {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    color: #fff;
}

/* ★ wrapper制限を解除 */
.fv-headline__inner {
    width: 100%;
    max-width: none;
    padding: 0 5%;
}

/* =========================
   3ナシバッジ
========================= */

.fv-badges {
    display: flex;
    width: 100%;
    justify-content: center;

    gap: 1vw;
    margin-bottom: 3.5vw;
    flex-wrap: nowrap;
    /* ★ 折り返さない */
}

.fv-badge {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.8em 2em;
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   中段
========================= */

.fv-subcopy {
    font-size: clamp(16px, 3.5vw, 48px);
    font-weight: 700;
    margin-bottom: 3.5vw;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.fv-subcopy img {
    height: 40px;
}

/* =========================
   メインH1
========================= */

.fv-title {
    font-size: clamp(20px, 5vw, 120px);
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 100%;

}

/* =========================
   FV 下部エリア
========================= */
.fv-ui {
    position: absolute;
    left: 0;
    top: 600px;
    width: 100%;
    bottom: 50px;
    /* ← CTA下部煽りテキストの下限 */
}

.fv-ui .wrapper {
    padding-top: 0;
    padding-bottom: 0;
}

/* 3points */
.fv-points {
    display: flex;
    justify-content: space-between;
}

.fv-point {
    width: 32%;
    background: #FFFFFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 40%, rgba(236, 245, 255, 1) 60%);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fv-point__text {
    text-align: center;
}

/* -------------------- sec01 -------------------- */
#sec01 {
    position: relative;
    background-image: url("../img/trouble_bg.svg");
    background-size: cover;
    background-position: center top;
    z-index: 999;
    padding-bottom: 100px;
    margin-top: -2px;

    /* triangle */
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 100px),
            50% 100%,
            0 calc(100% - 100px));
}

.trouble {
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 100px;
    padding: 50px 0;
    z-index: 1;

    background-color: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 15px 0 #00000030;
    box-shadow: 0 15px 0 #00000030;
}

.trouble_lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trouble_lead_icon img {
    width: 70px;
    /* PC用サイズ */
    height: auto;
    aspect-ratio: auto;
}

.trouble_lead_txt {
    text-align: left;
    line-height: 1.3;
    font-size: 5rem;
}

.trouble_lead_txt .first {
    display: inline-block;
    border-bottom: 5px solid #1e3a8a;
    padding-bottom: 5px;
}


/*-- trouble list --*/
.list6 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.box,
.list {
    padding: 0;
    margin: 0;
    font-weight: bold;
    list-style-type: none;
    font-size: 3.5rem;
}

.list {
    display: flex;
    align-items: center;
    margin: 5rem 0;
    /*padding: 5px 10px*/
    background-color: rgb(255, 255, 255);
}

.list img {
    height: 50%;
}

.text {
    margin: 0 0 0 1em;
    color: #333;
}

.tr_sentence {
    font-size: clamp(3rem, 6vw, 5rem);
    white-space: nowrap;
    width: 100%;
    text-align: center;
    padding-top: 50px;
}


/* -------------------- sec02 -------------------- */
#sec02 {
    padding-top: 30px;
    background-color: #eaf2ff;
    position: relative;
    /* margin-top: -250px; */
    /* sec01三角との重なり */
}

/* ===== 放射背景ゾーン ===== */
.sec02-hero .wrapper {
    padding-bottom: 0;
}

.sec02-hero {
    position: relative;
    background-image: url("../img/solution_bg.svg");
    background-size: cover;
    background-position: center top;
    padding-top: 250px;
}


/* 見出し */
.solution_lead {
    text-align: center;
    white-space: nowrap;
}

.solution_lead .first {
    line-height: 1.5;
    font-size: clamp(8rem, 10vw, 10rem);
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.solution_lead .second {
    font-size: clamp(3rem, 6vw, 5rem);
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

/* 人物 */
.sec02_pic {
    position: relative;
    text-align: center;
    margin-top: 50px;
    z-index: 2;
}

.sec02_pic img {
    height: 300px;
    width: auto;
}

/* 紺色の帯 */
.sec02-band {
    position: absolute;
    left: 0;
    bottom: -200px;
    /* ← 人物に半分かぶせる */
    width: 100%;
    height: 350px;
    background-color: #1e3a8a;
    z-index: 1;
}

/* ===== 薄青背景ゾーン ===== */
.sec02-body {
    background-color: #eaf2ff;
    padding-top: 0;
}

.sec02-body .wrapper {
    padding-top: 80px;
}

/* 選ばれる理由ボックス */
.feature {
    position: relative;
    background-color: #fff;
    border-radius: 24px;
    margin-top: -80px;
    /* 人物の下に合わせる */
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 3;

    background-color: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 15px 0 #00000030;
    box-shadow: 0 15px 0 #00000030;
}

/* カードリスト */
.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
}

/* カード */
.card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    width: 350px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* タグ */
.tag {
    position: absolute;
    align-items: center;
    background: #ffffff;
    color: #1e3a8a;
    border-color: #1e3a8a;
    border-width: 1px;
    padding: 1rem;
    text-align: center;
}

/* カード中身 */
.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card p {
    margin: 0 1rem;
    flex-grow: 1;
    text-align: center;
    margin: 20px 10px;
    font-size: 2.5rem;
    color: #1e3a8a;
    font-weight: 600;
    line-height: 1.4;
}


/* -------------------- sec03 -------------------- */
/*求人ボックス*/
#sec03 {
    background-color: #eaf2ff;
}

#sec03 .in_wrapper {
    padding-bottom: 80px;
}

.offer_box {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    padding: 3rem 2rem 2rem 2rem;

    background-color: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 0 #00000030;
    box-shadow: 0 10px 0 #00000030;
    border: 1px solid #ccc;
}

.offer_detail {
    display: flex;
    margin: 0 auto;
}

.offer_detail_img {
    width: 50%;
}

.offer_detail_txt {
    margin-left: 2rem;
}

.offer_detail_txt h3 {
    font-size: 3rem;
    line-height: 1.8;
    color: #1e3a8a;
    font-weight: 600;
}

.offer_detail_txt .item {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    align-items: center;
}

.offer_detail_txt .tag_salary {
    background-color: #f9f8e2;
    padding: 0.5rem 3rem;
    font-size: 2rem;
    margin-right: 1rem;
    border-radius: 20px;
    border: #ccc solid 1px;
    font-weight: 600;
}

.offer_detail_txt .tag_other {
    background-color: #ecf5ff;
    padding: 0.5rem 3rem;
    font-size: 2rem;
    margin-right: 1rem;
    border-radius: 20px;
    border: #ccc solid 1px;
}

.offer_points {
    background-color: #f7f7f7;
    padding: 3rem;
    color: #1e3a8a;
    font-size: 2rem;
    line-height: 1.7;
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.job_sentence {
    font-size: clamp(3rem, 5.5vw, 5rem);
    width: 100%;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    color: #1e3a8a;
    padding: 3rem 0;
}

/* -------------------- CTA01 -------------------- */
#CTA01 {
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    background-size: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/sp_fv.webp);




}

/* -------------------- sec04 -------------------- */

#sec04 {
    position: relative;
    margin-top: -100px;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

/* ===== 背景ゾーン ===== */
.sec04-bg .wrapper {
    padding-bottom: 0;
}

.sec04-bg .in_wrapper {
    margin-top: 100px;
}

.sec04-bg {
    position: relative;
    background-image: url("../img/speed_bg.webp");
    background-size: cover;
    background-position: center top;
    padding-top: 100px;
    padding-bottom: 100px;

    /* 下だけ逆三角で切り抜く */
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 100px),
            50% 100%,
            0 calc(100% - 100px));
}

.Q_headline,
.A_headline {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    text-align: center;
    z-index: 1;
}

.Q_headline .headline-inner {
    color: #cbcbcb;
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 600;
}

.A_headline {
    flex-direction: column;
    /* ←これが決定打 */
    gap: 12px;
    margin-top: 50px;
    color: #fff;
    font-size: clamp(3.5rem, 4vw, 4rem);
    font-weight: 700;
}

.Q_headline::before,
.A_headline::before {
    position: absolute;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -55%);
    font-size: 200px;
    font-weight: bold;
    font-style: italic;
    color: rgb(255 255 255 / 10%);
    z-index: -1;
    pointer-events: none;
}

.Q_headline::before {
    content: "Q";
}

.A_headline::before {
    content: "A";
}

.headline-inner {
    max-width: 90%;
    margin: 0 auto;
}

.A_headline img {
    width: 100%;
    max-width: 960px;
    height: auto;
    object-fit: contain;
}


/* スピードカードリスト */
.speed_card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
    margin-top: 50px;
}

/* スピードカード */
.speed_card {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 315px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #1e3a8a;
    padding: 3rem 1.2rem 1.2rem 1.2rem;
    border-top: 20px solid #39aaf5;
}

/* カード中身 */
.speed_card img {
    width: 100%;
    height: auto;
    display: block;
}

.speed_card .tri {
    position: relative;
    text-align: center;
    font-weight: 600;
    padding: 3rem 0;
}

.speed_card .tri::before {
    content: "▼";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(0, 0, 0, 0.15);
}

.speed_card .reason {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    padding-bottom: 20px;

}

.speed_card .exp {
    font-size: 1.7rem;
    line-height: 1.5;
    padding-bottom: 20px;
}



/* -------------------- sec05 -------------------- */
#sec05 {
    background-color: #eaf2ff;
    margin-top: -100px;

    .wrapper {
        max-width: 1200px;
    }
}

#sec05 h2 {
    margin: 100px 0px;
}

.rev-content {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    margin-bottom: 50px;
}

.rev-txt {
    align-items: center;
    width: 100%;
    border-bottom: #f9f8e2 20px solid;
}

.rev-name {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5;
    padding: 2rem 2rem 2rem 2rem;
    color: #1e3a8a;
}

.rev-detail {
    font-size: 2rem;
    line-height: 1.5;
    padding: 0rem 2rem 2rem 2rem;
    color: #1e3a8a;
}

/* -------------------- sec06 -------------------- */
#sec06 {
    background-image: repeating-linear-gradient(315deg, #ffffff, #ffffff 4px, #ecf5ff 4px, #ecf5ff 7px);
}

HTML CSS Result Skip Results Iframe .stepbar {
    margin: 0 auto;
    width: 50%;
}

.stepbar .bg_stepbarwrap {
    display: flex;
    justify-content: space-between;
}

.stepbar .bg_stepbarwrap img {
    width: 40%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.stepbar .stepbarwrap {
    position: relative;
    padding-bottom: 4rem;
    /* 線の余白 */
}

.stepbar .stepbarwrap .steptitle {
    display: inline-flex;
    align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    content: "";
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #000;
}

.stepbar .stepbarwrap .steptitle .stepnum {
    padding-left: 1em;
    font-size: 3rem;
    color: #39aaf5;
    font-weight: 600;
}

.stepbar .stepbarwrap .steptxt {
    padding-left: 3rem;
    padding-right: 2rem;
}

.stepbar .stepbarwrap .steptxt .title {
    margin: 0.5em 0;
    font-weight: 600;
    font-size: 4rem;
    color: #1e3a8a;
}

.stepbar .stepbarwrap .steptxt .txt {
    font-size: 2.5rem;
    line-height: 4rem;
    color: #1e3a8a;
}

.stepbar .stepbarwrap .stepline {
    position: absolute;
    top: 2.8rem;
    /* 丸の中心あたり */
    left: 0.9em;
    width: 1px;
    height: calc(100% + 0rem);
    background: #000;
}

.bg_stepbarwrap:last-child .stepline {
    display: none;
}

/* --------------------
   stepbar を ol 対応
-------------------- */
/* デフォルトの番号を消す */
.stepbar {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
}

/* liを従来のdivと同じ扱いに */
.stepbar>li {
    list-style: none;
}

/* -------------------- sec07 -------------------- */
#sec07 {
    background-color: #fff;
}


.Qa-Box {
    margin: 0 auto;
}

.Qa :not(:last-child) {
    margin-bottom: 3.5rem;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
    display: flex;
    align-items: baseline;
    margin: 1.5rem 0;
}

.Qa-Box .Qa dt {
    background: #eaf2ff;
    padding: 1.5rem;
}

.Qa-Box .Qa dd {
    padding: 0 1.5rem 2rem 1.5rem;
}

.Qa-Box .Qa dt p {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 2.8rem;
    font-weight: bold;
    color: #1e3a8a;
    width: 100%;
}

.Qa-Box .Qa dd p {
    margin: 0;
    padding-left: 1.5rem;
    width: 100%;
    font-size: 2.5rem;
    line-height: 4.5rem;
}

.Qa-Box .Qa dt::before {
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #1e3a8a;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
}

.Qa-Box .Qa dd::before {
    content: "A";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #39aaf5;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
}

/* -------------------- CTA02 -------------------- */
#CTA02 {
    position: relative;
    background-size: cover;
    background-position: center top;
    z-index: 2;
    margin-bottom: 100px;
}

#CTA02 .wrapper {
    padding-top: 0;
    padding-bottom: 0;
}


/* -------------------- footer -------------------- */
#footer {
    background-color: #1e3a8a;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
    font-size: 2.5rem;
    gap: 30px;
}

#footer img {
    height: 180px;
    width: auto;
}

.footer_content {
    display: flex;
    justify-content: center;
    line-height: 4rem;
    gap: 50px;
}


/* ------------------------------ TABLET ------------------------------ */
@media (min-width: 768px) and (max-width: 1024px) {

    html {
        font-size: 50%;
        /* SPより少し大きめ（調整可能） */
    }

    .wrapper {
        width: 80%;
        /* 左右に余白を持たせる */
        max-width: 700px;
        /* ← ここがポイント */
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Header */
    .header__nav {
        display: none;
        /* SPと同じく非表示 */
    }

    .header__logo img {
        height: 50px;
    }

    .header__actions .header__tel {
        font-size: 2.5rem;
    }

    a.btn--sm {
        font-size: 2.5rem;
    }

    /* FV */
    .fv {
        height: 1024px;
        background-image: url("../img/sp_fv.webp");
        /* SP画像でOK */
        background-position: center top;
    }

    .fv-headline {
        top: 100px;
    }

    .fv-badges {
        justify-content: center;
        margin-bottom: 2.5rem;
    }

    .fv-subcopy {
        margin-bottom: 10px;
    }

    .fv-subcopy img {
        height: 26px;
    }

    .fv-title {
        line-height: 1.2;
    }

    .fv-ui {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
    }

    .fv-points {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .fv-point__text p {
        white-space: nowrap;
    }

    .fv-point__text .px30 {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .fv-point__text .px35 {
        font-size: clamp(2.4rem, 4vw, 3.2rem);
    }

    .fv-point {
        flex-direction: column;
        align-items: center;
        padding-top: 3.5rem;
        overflow: visible;
    }

    .fv-point .icon {
        position: absolute;
        top: -2.5rem;
        /* 半分はみ出し */
        width: 5rem;
        height: auto;
    }

    /*--- sec01 ---*/
    .trouble {
        display: block;
        margin-top: 0;
        padding: 10px 0;
    }

    .trouble_lead {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 0 10px;
    }

    .trouble_lead_icon img {
        width: 40px;
        height: auto;
        /* ← 潰れ防止 */
    }

    .trouble_lead_txt {
        text-align: center;
        font-size: 4.5rem;
    }

    .trouble_lead_txt .first {
        display: inline-block;
        border-bottom: 2px solid #1e3a8a;
        padding-bottom: 2px;
    }


    /* sec02 */
    .card p {
        font-size: 3rem;
    }

    /* sec03（求人）縦積みに */
    .offer_detail {
        flex-direction: column;
    }

    .offer_detail_img {
        width: 100%;
        margin-bottom: 10px;
    }

    .offer_detail_txt {
        margin-left: 0;
    }

    /*--- sec04 ---*/
    .A_headline {
        margin-top: 20px;
    }

    .speed_card {
        width: 90%;
        padding: 30px;
    }

    .speed_card .tri,
    .speed_card .exp {
        font-size: 2.5rem;
    }

    .speed_card .reason {
        font-size: 3.5rem;
    }


    /*--- sec05 ---*/
    #sec05 h2 {
        margin-bottom: 50px;
    }

    .rev-content {
        flex-direction: column;
        /* 横並び → 縦積み */
        padding: 10px;
        /* ボックス内部の余白 */
        border-bottom: #f9f8e2 10px solid;
        margin-bottom: 20px;
    }

    .rev-content img {
        width: 100%;
        /* ボックス幅に収める */
        height: auto;
        margin-bottom: 10px;
    }

    .rev-txt {
        width: 100%;
        border: none;
    }

    .rev-name {
        padding: 10px;
        font-size: 2.5rem;
    }

    .rev-detail {
        padding: 0 10px 10px 10px;
        font-size: 2.5rem;
    }

}

/* ------------------------------ SP ------------------------------ */
@media (max-width: 767px) {

    /* 共通 */
    html {
        font-size: 31.25%;
        /* 1rem:5px */
    }

    .sp_n {
        display: none;
    }

    .pc_n {
        display: block;
    }

    .wrapper {
        width: 90%;
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: visible;
    }

    h3 {
        margin-bottom: 5px;
    }

    h2 {
        margin-bottom: 30px;
    }

    /*--- Header ---*/
    .header__nav {
        display: none;
    }

    .header__logo img {
        height: 32px;
    }

    .header__actions .header__tel {
        font-size: 2.5rem;
    }

    a.btn--sm {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }


    /*--- CTA ---*/
    /*Line*/
    a.cta_line_txt {
        width: 100%;
    }

    .cta-first {
        font-size: 3rem;
        font-weight: 600;
    }

    .cta-second {
        font-size: 2.2rem;
        font-weight: 700;
    }

    a.btn--line i.fa-position-left {
        font-size: 6rem;
    }

    /*--- FV ---*/
    .fv {
        height: 600px;
        /* ← SP用に必ず別指定 */
        background-image: url("../img/sp_fv.webp");
        background-position: center top;
    }

    .fv-headline {
        top: 80px;
        /* 上に寄せる */
    }

    /* 横並び維持 */
    .fv-badges {
        flex-direction: row;
    }

    .fv-badge {
        padding: 6px 10px;
        font-size: 12px;
    }

    .fv-subcopy {
        margin-bottom: 10px;
    }

    .fv-subcopy img {
        height: 16px;
    }

    .fv-title {
        line-height: 1.2;
    }

    .fv-ui {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
    }

    .fv-points {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .fv-point__text p {
        white-space: nowrap;
    }

    .fv-point__text .px30 {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }

    .fv-point__text .px35 {
        font-size: clamp(2.4rem, 4vw, 3.2rem);
    }

    .fv-point {

        flex-direction: column;
        align-items: center;
        padding-top: 3.5rem;
        position: relative;
        overflow: visible;
        /* ← これ */
    }

    .fv-point .icon {
        position: absolute;
        top: -2.5rem;
        /* 半分はみ出し */
        width: 5rem;
        height: auto;
    }

    /*--- sec01 ---*/
    #sec01 {
        padding-bottom: 85px;
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 60px),
                50% 100%,
                0 calc(100% - 60px));
    }

    #sec01 .wrapper {
        padding-bottom: 0;
    }

    .trouble {
        display: block;
        margin-top: 0;
        padding: 10px 0;
    }

    .trouble_lead {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 0 10px;
    }

    .trouble_lead_icon img {
        width: 20px;
        /* SP用 */
        height: auto;
        /* ← 潰れ防止 */
    }

    .trouble_lead_txt {
        text-align: center;
        font-size: 4.5rem;
    }

    .trouble_lead_txt .first {
        display: inline-block;
        border-bottom: 2px solid #1e3a8a;
        padding-bottom: 2px;
    }

    .lead_main {
        white-space: nowrap;
        /* ← 改行防止 */
    }

    .box .list {
        font-size: 3rem;
        margin: 4rem 0;
    }

    .list6 {
        padding: 0 10px;
    }

    .list img {
        width: 20px;
        height: auto;
        padding-left: 5px;
    }

    .text {
        margin-left: 10px;
    }

    /*--- sec02 ---*/
    .sec02-hero {
        padding-top: 250px;
    }

    .sec02-hero .wrapper {
        padding-top: 25px;
    }

    .sec02_pic {
        margin-top: 15px;
    }

    .sec02_pic img {
        height: 180px;
        width: auto;
    }

    .sec02-band {
        bottom: -100px;
        height: 150px;
    }

    .sec02-body .feature {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .card-list {
        flex-wrap: nowrap;
        gap: 1rem;
        width: 90%;
        margin-top: 10px;
    }

    .card p {
        font-size: 2.3rem;
    }

    .card .tag {
        padding: 0.7rem;
    }

    /*--- sec03 ---*/
    #sec03 .wrapper {
        padding-top: 0;
    }

    /* offer_box 全体をカード化 */
    .offer_box {
        padding: 10px;
        margin-bottom: 30px;
    }

    /* 横並び → 縦積み */
    .offer_detail {
        flex-direction: column;
    }

    /* ① 画像 */
    .offer_detail_img {
        width: 100%;
        margin-bottom: 10px;
    }

    .offer_detail_img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    /* ②〜⑤ テキストエリア */
    .offer_detail_txt {
        margin-left: 0;
        padding: 10px;
    }

    .offer_detail_txt .headline {
        font-size: 3rem;
        /* PCを基準に少しだけ調整 */
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .offer_detail_txt .item {
        font-size: 2.4rem;
        margin: 8px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    /* タグがはみ出ないように */
    .offer_detail_txt .tag_salary,
    .offer_detail_txt .tag_other {
        padding: 0.6rem 3rem;
        font-size: 2.3rem;
        white-space: nowrap;
    }

    /* ⑥ ポイント */
    .offer_points {
        padding: 10px;
        font-size: 2.2rem;
        line-height: 1.6;
        border-radius: 10px;
    }

    /*--- CTA01 ---*/
    #CTA01 {
        padding-bottom: 50px;
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 60px),
                50% 100%,
                0 calc(100% - 60px));
    }

    #CTA01 .wrapper {
        padding-top: 0;
    }

    /*--- sec04 ---*/
    #sec04 .wrapper {
        padding-top: 0px;
    }

    .Q_headline,
    .A_headline {
        height: 100px;
        margin-top: 25px;
    }

    .Q_headline::before,
    .A_headline::before {
        position: absolute;
        top: 50%;
        left: 47%;
        transform: translate(-50%, -55%);
        font-size: 100px;
        font-weight: bold;
        font-style: italic;
        color: rgb(255 255 255 / 10%);
        z-index: -1;
        pointer-events: none;
    }

    .speed_card-list {
        margin-top: 30px;
        margin-bottom: 80px;
        gap: 20px;
    }

    .speed_card {
        border-top: 15px solid #39aaf5;
        padding: 4.5rem 3rem 3rem 3rem
    }

    .speed_card .tri {
        padding: 4.5rem 0;
    }

    .speed_card .tri::before {
        font-size: 35px;
    }

    .speed_card .reason {
        font-size: 4rem;
    }

    .speed_card .exp {
        font-size: 3rem;
    }

    .sec04-bg {
        padding-bottom: 30px;
        /* 下だけ逆三角で切り抜く */
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 60px),
                50% 100%,
                0 calc(100% - 60px));
    }

    /*--- sec05 ---*/
    #sec05 h2 {
        margin-bottom: 50px;
    }

    .rev-content {
        flex-direction: column;
        /* 横並び → 縦積み */
        padding: 10px;
        /* ボックス内部の余白 */
        border-bottom: #f9f8e2 10px solid;
        margin-bottom: 20px;
    }

    .rev-content img {
        width: 100%;
        /* ボックス幅に収める */
        height: auto;
        margin-bottom: 10px;
    }

    .rev-txt {
        width: 100%;
        border: none;
    }

    .rev-name {
        padding: 10px;
        font-size: 2.5rem;
    }

    .rev-detail {
        padding: 0 10px 10px 10px;
        font-size: 2.5rem;
    }


    /* --- sec06 --- */
    .stepbar {
        width: 100%;
    }

    .bg_stepbarwrap {
        position: relative;
    }

    .stepbarwrap {
        position: relative;
    }

    .stepline {
        position: absolute;
        top: 2.6rem;
        /* 丸の中心位置 */
        left: 0.7em;
        width: 1px;
        height: 100%;
        background: #000;
        height: calc(100% + 3rem);
    }

    /* 最後のSTEPだけ線を消す */
    .bg_stepbarwrap:last-child .stepline {
        display: none;
    }

    .bg_stepbarwrap img {
        width: calc(100% - 3rem);
        margin-left: 3rem;
        margin-top: 2rem;
        height: auto;
        object-fit: contain;
    }

    .stepcircle {
        width: 1.6rem;
        height: 1.6rem;
        border-width: 2px;
    }

    .stepnum {
        font-size: 3.2rem;
    }


    /*--- sec07 ---*/
    .Qa-Box {
        width: 100%;
    }

    /*-- CTA02 ---*/
    #CTA02 {
        margin-bottom: 50px;
    }

    /*--- footer---*/
    #footer {
        padding-top: 0px;
    }

    #footer img {
        width: 50px;
        height: auto;
        align-items: center;
        margin: 0 auto;
    }

    .footer_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .footer_content .wrapper {
        padding: 0;
    }

    address {
        text-align: center;
    }

}

/* =========================================
   追加：スクロール＆強調アニメーション
========================================= */

/* 1. 基本となる初期状態（透明・少し下に配置） */
.fade-in-up,
.js-fade-in-up,
.stagger-item,
.stagger-card,
.stagger-card-speed {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* フェードインのみ */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* 右からスライドイン（sec02の人物画像など） */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 2. 発火状態（JSで is-active が付与された時のスタイル） */
.fade-in-up.is-active,
.js-fade-in-up.is-active,
.fade-in.is-active,
.slide-in-right.is-active,
.stagger-item.is-active,
.stagger-card.is-active,
.stagger-card-speed.is-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* 3. 順番に表示（Stagger）の遅延設定
   ※リストやカードが同時に画面に入った際、少しずつズレて表示されるようにします */
.stagger-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-card:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-card:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-card:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-card:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-card:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* スピードカードは3枚なので少し長めの間隔に */
.stagger-card-speed:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-card-speed:nth-child(2) {
    transition-delay: 0.3s;
}

.stagger-card-speed:nth-child(3) {
    transition-delay: 0.5s;
}

/* 4. ヘッダーのスクロール追従アニメーション
   ※下にスクロールした時は隠れ、上に少し戻るとヘッダーが現れる等のUI改善用 */
.js-header-anim {
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.js-header-anim.is-hidden {
    transform: translateY(-100%);
}

/* 5. CTAボタンの脈打ちアニメーション
   ※既存の cta-bounce (縦のバウンド) に加え、ボタン全体が優しく拡大縮小して視線を誘導します */
.btn-pulse {
    animation: pulse-scale 2.5s infinite ease-in-out;
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* ホバー時は押しやすくするためにアニメーションを停止 */
.btn-pulse:hover {
    animation-play-state: paused;
}


/* =========================================
   【新規】カラー変数定義 (全体の色味を一括変更)
========================================= */
:root {
    --primary-color: #ff7d00;
    /* 温かみのあるオレンジ */
    --primary-dark: #e66b00;
    --secondary-color: #00a040;
    /* 信頼のグリーン(LINE連携と相性◎) */
    --accent-yellow: #ffdb19;
    --bg-warm: #fff9f0;
    /* 全体的な優しい背景色 */
    --text-main: #333333;
}

body {
    color: var(--text-main);
}

.bg-warm {
    background-color: var(--bg-warm);
}

/* --- 検索窓風UI --- */
.fv-search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fv-search-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.fv-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.tag-search {
    background: #f1f1f1;
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.4rem;
}

.btn-search {
    display: block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 0 var(--primary-dark);
}

/* --- トラブル例カード --- */
.trouble-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trouble-card {
    background: #fff;
    border: 3px solid #eee;
    border-radius: 15px;
    width: 30%;
    padding: 20px;
    text-align: center;



    @media (max-width: 767px) {
        width: 100%;
    }

}

.bad-status {
    background: #555;
    color: #ffb46e;

    padding: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 25px;

    @media (max-width: 767px) {
        font-size: 20px;
    }
}

.trouble-card p {
    font-size: 20px;
    text-align: left;
    line-height: 2;
}

.arrow-down {
    color: var(--primary-color);
    font-size: 3rem;
    margin: 15px 0;
}

.good-status {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 25px;

    @media (max-width: 767px) {
        font-size: 20px;
    }

}

/* --- スケジュール(タイムライン) --- */
.timeline {
    border-left: 4px solid var(--primary-color);
    margin: 0 auto;
    max-width: 700px;
    padding-left: 20px;

}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.time-badge {
    position: absolute;
    left: -40px;
    top: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-left: 80px;

    p {
        font-size: 17px;
    }
}



.tl-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 2rem !important;
    margin-bottom: 10px;
}

/* --- アコーディオンFAQ --- */
.js-accordion-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    /* JSで制御 */
}

.js-accordion-title.is-open .icon {
    transform: rotate(45deg);
    transition: 0.3s;
}

/* --- フローティングバナー --- */
.floating-banner {
    position: fixed;
    bottom: -100px;
    /* 初期は隠す */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 10px;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.floating-banner.is-visible {
    bottom: 0;
}

.float-btn {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 8px;
}

.float-line {
    background: #06C755;
}

.float-tel {
    background: var(--primary-color);
}

/* =========================================
   リッチ化：選ばれる理由（REASON TO CHOOSE）
========================================= */

/* カードを並べるGridコンテナ（PC3列、SP1〜2列に自動調整） */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

/* カード本体のデザイン */
.reason-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    z-index: 1;
    /* ホバー時の動きを滑らかにする設定 */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* ホバーアクション：少し浮いて影が濃くなり、枠線が光る */
.reason-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: #ff7d00;
}

/* ホバー時のキラッと光るエフェクト（シャインエフェクト） */
.reason-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
    transition: none;
}

.reason-card:hover::after {
    animation: shine 0.7s forwards;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

/* 透かしの大きな番号 */
.reason-card__num {
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(57, 170, 245, 0.12);
    /* 薄い水色 */
    z-index: 0;
    font-style: italic;
    line-height: 1;
    pointer-events: none;
}

/* 画像エリア */
.reason-card__img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* ホバー時に画像が少しズームする */
.reason-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reason-card:hover .reason-card__img img {
    transform: scale(1.1);
}

/* テキストエリア */
.reason-card__body {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    /* 背景をうっすらグラデーションに */
    background: linear-gradient(to bottom, #ffffff, #f4f8ff);
}

/* テキスト本体 */
.reason-card__txt {
    font-size: 2rem;
    color: #1e3a8a;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

/* 蛍光ペン風のマーカー */
.emp-marker {
    background: linear-gradient(transparent 60%, rgba(255, 125, 0, 0.4) 60%);
    padding: 0 2px;
}

/* 登場アニメーションのオーバーライド（フワッと＋少しズームインしながら出現） */
.stagger-card {
    opacity: 0;
    transform: scale(0.9) translateY(40px);
}

.stagger-card.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* タブレット・SP向けの調整 */
@media (max-width: 767px) {
    .reason-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .reason-card__img {
        height: 180px;
    }

    .reason-card__txt {
        font-size: 2.4rem;
    }
}


/* =========================================
   求人スライダー (Swiper) 用スタイル
========================================= */
.job-slider {
    padding-bottom: 50px;
    /* ドット（ページネーション）のための余白 */
    position: relative;
    overflow: hidden;
    /* はみ出しを隠す */
}

/* スライダー内のoffer_boxの余白を調整 */
.job-slider .offer_box {
    margin-bottom: 0;
    height: auto;
}

/* ページネーション（ドット）の色変更 */
.job-slider .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
}

.job-slider .swiper-pagination-bullet-active {
    background: #ff7d00;
    /* プライマリーカラー（オレンジ）に合わせる */
}

/* ナビゲーション（左右矢印） */
.job-slider .swiper-button-prev,
.job-slider .swiper-button-next {
    color: #ff7d00;
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-slider .swiper-button-prev::after,
.job-slider .swiper-button-next::after {
    font-size: 2rem;
    font-weight: bold;
}

/* SP時は矢印を非表示にしてスワイプ操作のみにする（スッキリさせるため） */
@media (max-width: 767px) {

    .job-slider .swiper-button-prev,
    .job-slider .swiper-button-next {
        display: none !important;
    }
}

/* =========================================
   求人スライダー (カードレイアウト一新)
========================================= */
#sec03 {
    background-color: var(--bg-warm, #fff9f0);
    /* 温かみのある背景 */
    padding: 80px 0;

    .wrapper {
        max-width: 1200px;
    }
}

.job-slider {
    padding: 20px 10px 60px 10px;
    /* ドットや影のための余白 */
    overflow: hidden;
}

/* カード本体 */
.job-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* カード画像エリア */
.job-card__img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.job-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-card__badge {
    position: absolute;
    top: 15px;
    left: -10px;
    background: #ff0055;
    color: #fff;
    padding: 5px 15px 5px 20px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* カード本文エリア */
.job-card__body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    @media (max-width: 767px) {
        padding: 20px;
    }
}

/* タイトル (H3) */
.job-card__title {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 15px;
    /* 3行以上は省略記号(...)にする設定 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* タグ (勤務地・職種) */
.job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag-loc,
.tag-type {
    background: #eaf2ff;
    color: #1e3a8a;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;

    @media (max-width: 767px) {
        font-size: 2.5rem;
    }

}

/* 給与ブロック */
.job-card__salary {
    background: #fff5eb;
    border-left: 5px solid var(--primary-color, #ff7d00);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.salary-label {
    background: var(--primary-color, #ff7d00);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: bold;
    white-space: nowrap;

    @media (max-width: 767px) {
        font-size: 1.8rem;
    }

}

.salary-price {
    font-size: 1.4rem;
    color: var(--primary-dark, #e66b00);
    font-weight: bold;

    @media (max-width: 767px) {
        font-size: 2.4rem !important;
    }
}

.salary-price .huge {
    font-size: 2.8rem;
    margin: 0 2px;

    @media (max-width: 767px) {
        font-size: 3.5rem !important;
    }
}

/* こだわりポイント */
.job-card__points {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
    /* 下部に押し込む */
}

.point-title {
    text-align: center;
    color: var(--primary-color, #ff7d00);
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;

    @media (max-width: 767px) {
        font-size: 2.4rem !important;
    }
}

.job-card__points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-card__points li {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;

    @media (max-width: 767px) {
        font-size: 2.4rem !important;
    }
}

.job-card__points li i {
    color: #06C755;
    /* チェックマークの色 */
    margin-top: 3px;
}

/* Swiper ナビゲーション調整 */
.job-slider .swiper-pagination-bullet-active {
    background: var(--primary-color, #ff7d00);
}

.job-slider .swiper-button-prev,
.job-slider .swiper-button-next {
    color: #fff;
    background: rgba(30, 58, 138, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.job-slider .swiper-button-prev::after,
.job-slider .swiper-button-next::after {
    font-size: 1.8rem;
}

/* SPレイアウト */
@media (max-width: 767px) {
    #sec03 {
        padding: 40px 0;
    }

    .job-card__title {
        font-size: 3rem;
    }

    .salary-price .huge {
        font-size: 2.4rem;
    }

    /* SP時は矢印を非表示にしてスワイプ操作のみに */
    .job-slider .swiper-button-prev,
    .job-slider .swiper-button-next {
        display: none !important;
    }
}

/* =========================================
   利用者さまの声スライダー (Review Slider)
========================================= */
#sec05 {
    padding: 80px 0;
    background-color: #eaf2ff;
    /* 爽やかな薄い青背景で清潔感を演出 */
    margin-top: 0;
}

.review-slider {
    padding: 20px 10px 60px 10px;
    overflow: hidden;
}

/* レビューカード本体 */
.review-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
    gap: 40px;
    height: 100%;
    box-sizing: border-box;
}

/* 画像エリア (丸く切り抜く) */
.review-card__img {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border: 5px solid #eaf2ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキストエリア */
.review-card__body {
    position: relative;
    flex-grow: 1;
}

/* 背景のクォーテーションマーク */
.quote-icon {
    font-size: 6rem;
    color: rgba(255, 125, 0, 0.15);
    /* 薄いオレンジで装飾 */
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
}

/* コメント本文 */
.rev-detail {
    position: relative;
    z-index: 1;
    font-size: 2.4rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

/* お名前 */
.rev-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: right;
    line-height: 1.4;
}

.rev-name span {
    font-size: 1.6rem;
    color: #666;
    font-weight: normal;
}

/* ページネーション（ドット）の色変更 */
.review-pagination .swiper-pagination-bullet-active {
    background: #1e3a8a;
    /* 紺色に合わせて引き締める */
}

/* SPレイアウト (縦積みに変更) */
@media (max-width: 767px) {
    #sec05 {
        padding: 40px 0;
    }

    .review-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }

    .review-card__img {
        width: 180px;
        height: 180px;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
        font-size: 5rem;
    }

    .rev-detail {
        font-size: 2.4rem;
        text-align: left;
        /* 本文は読みやすいように左揃え */
    }

    .rev-name {
        text-align: right;
    }
}

/* =========================================
   追従フローティングバナー (常時表示版)
========================================= */
.floating-banner {
    position: fixed;
    bottom: 0;
    /* -100pxから0に変更し、最初から表示させます */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    /* 影を少し強めて目立たせる */
    display: flex;
    /* iPhoneX以降の下部ホームバー(セーフエリア)に被らないようにする魔法のコード */
    padding: 15px 10px calc(15px + env(safe-area-inset-bottom));
    z-index: 99999;
}

.float-btn {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 8px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
    /* ボタンに少し立体感を出す */
    transition: transform 0.2s ease;
}

/* 押した時に少し沈むアクション */
.float-btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

.float-line {
    background: #06C755;
}

.float-tel {
    background: var(--primary-color, #ff7d00);
}

/* フローティングバナーが被るため、フッターのいちばん下に余白を空ける */
body {
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 100px;
    }
}


#trouble-examples {
    background-image: url(../img/nayami.jpg);
    background-size: 100%;
    background-position-x: center;
    height: 900px;

    @media (max-width: 767px) {
        background-image: none;
        height: auto;
    }

    .wrapper {
        width: 80%;
    }
}

/* =========================
   Reviews Grid
========================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-top: 60px;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.review-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.review-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card__body {
    position: relative;
    padding: 32px 0 28px;
}

.quote-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 18px;
}

.review-card__title {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    margin: 0 0 20px;
}

.rev-detail {
    font-size: 15px;
    line-height: 2;
}

.rev-name {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    margin: 20px 0 0;
}


/* =========================
   Tablet
========================= */

@media screen and (max-width: 1024px) {

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

}


/* =========================
   Smartphone
========================= */

@media screen and (max-width: 767px) {

    .review-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }

    .review-card__body {
        padding: 0;
    }

    .review-card__title {
        font-size: 14px;
    }

    .rev-detail {
        font-size: 14px;
        line-height: 1.9;
        font-size: 13px;
        line-height: 1.5;
    }

}


.new-fv {
    padding-top: 83px;

    @media screen and (max-width: 767px) {
        padding-top: 53px;
    }

    img {
        display: block;
        max-width: 100%;
    }
}

/* 親要素：画面全体の中央に配置 */
.sch {
    margin: 0 auto;

    img {
        max-width: 100%;
    }
}

.wrap2 {
    width: 90% !important;
    max-width: 90%;
}


.pc {
    display: block;

    @media screen and (max-width: 767px) {
        display: none !important;
    }
}

.sp {
    display: none !important;

    @media screen and (max-width: 767px) {
        display: block !important;
    }
}