/* -------------------- 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: 1000px;
    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 */

    h3 {
        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;
}
.px15 {
    font-size: 1.5rem;
}
.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.png);
    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;
}
.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;
    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: 9rem;
    left: 3rem;
}

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: 5.5rem;
    font-weight: 700;
}
    /* 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: 1800px; /* ← KVの絶対高さ（例） */
    background-image: url("../img/pc_fv.png");
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}
.fv-ui {
  position: absolute;
  left: 0;
  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 {
  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 .headline {
        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 {
  position: relative;
  background-color: #eaf2ff;
  background-size: cover;
  background-position: center top;
  z-index: 2;
  padding-bottom: 100px;

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

/* -------------------- 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.png");
  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;
}
#sec05 h3 {
    margin-top: 100px;
}
#sec05 h2 {
    margin-bottom: 100px;
}
.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;
}


/* -------------------- 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;
    gap: 30px;
}
#footer img {
    height: 180px;
    width: auto;
}
.footer_content {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    line-height: 4rem;
    gap: 50px;
}

/* ------------------------------ TABLET ------------------------------ */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
    /* Common */
}


/* ------------------------------ 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: 2.5rem;
            letter-spacing: 0.05em;
        }


    /*--- CTA ---*/
        /*Line*/
        a.cta_line_txt {
            width: 100%;
        }
        .cta-first {
        font-size: 3rem;
        font-weight: 600;
        }
        .cta-second {
        font-size: 4.2rem;
        font-weight: 700;
        }
        a.btn--line i.fa-position-left {
        font-size: 6rem;
        }

    /*--- FV ---*/
    .fv {
        height: 620px; /* ← SP用に必ず別指定 */
        background-image: url("../img/sp_fv.png");
        background-position: center top;
    }
    .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 --- */
    .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: 10px;
    }
    #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;
    }

}