@charset "utf-8";

/* ==========================================================================
   Kaitori Page Styles (k-シリーズ)
   ========================================================================== */
.lp-container {
    width: 92%;
    margin: 0 auto;
    max-width: 960px;
}

/* Hero (k-hero) */
.k-hero {
    background: #000;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.k-hero__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
  background: linear-gradient(135deg,rgba(0,0,0),var(--hrms-blue));
}

.k-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.k-hero__inner {
    display: grid;
    position: relative;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 40px;
    align-items: center;
    z-index: 5;
}

.k-hero__label {
    color: var(--hrms-red);
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.k-hero__title {
    font-size: clamp(20px, 6vw, 44px);
    line-height: 1.3;
    /* margin-bottom: 25px; */
    font-weight: bold;
    margin-bottom: 0;
    color: #fff!important;
    text-shadow: 0px 0px 10px #000;
}

.k-hero__title span {
    color: var(--hrms-red);
}

.k-hero__catch span {
  background: linear-gradient(#fff,var(--hrms-accent),#333  99%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  /* position: absolute; */
  /* right: 0; */
  /* bottom: 0px; */
  z-index: 11;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.05);
}



.k-hero__text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
    margin-top: 20px;
}

.k-hero__btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.k-hero__image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* LINEボタン特殊装飾 */
.hrms-btn--line {
    background: linear-gradient(90deg,var(--hrms-accent), #ffa500);
    color: #fff;
}

.hrms-btn--line:hover {
    background-color: #05a346;
}


.k-problem__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.k-problem__list li {
    /* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 24 24" fill="%23d32f2f"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>') no-repeat left center;
    padding-left: 25px; */
    margin-bottom: 15px;
    font-weight: 500;
    background-color: #fff;
}

.lp-problem__text::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%); /* 上下中央揃え */
  width: 25px;
  height: 25px;
  /* SVG内の fill=%23d32f2f を書き換えることで色を変更できます */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 24 24" fill="%23003a82"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>') no-repeat center center;
  background-size: contain;
}

/* Cars (k-cars) */
.k-cars__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.k-car-card {
    background: var(--hrms-dark);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.k-car-card h3 {
    color: var(--hrms-red);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* ==========================================================================
   Kaitori Page: Hybrid Navy & Accent Yellow
   ========================================================================== */

:root {
    --hrms-blue: #003a82;      /* ロゴカラー：ネイビー */
    --hrms-accent: #ffcf00;    /* アクセント：イエロー */
    --hrms-dark-bg: #001f46;   /* さらに濃いネイビー（黒の代用） */
    --hrms-text-main: #333;
    --hrms-gray-bg: #f4f7fa;   /* 誠実な印象の薄いグレー（青み寄り） */
    --hrms-lp-red: #d32f2f;
}

/* 案3の要素：カーボン風のテクスチャ（透過画像やグラデーションで表現） */
.k-dark-section {
    background-color: var(--hrms-dark-bg);
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1)),
        linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1));
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    color: #fff;
}

/* Hero (案2のインパクト) */
.k-hero {
    background: var(--hrms-dark-bg); /* 黒ではなく濃いネイビー */
    padding: 100px 0;
    color: #fff;
}
.k-hero__title span {
    color: var(--hrms-accent); /* イエローが暗い背景に映えます */
    text-shadow: 0 0 10px rgba(255, 207, 0, 0.3);
}
.k-hero__label {
    color: var(--hrms-accent);
    border-left: 3px solid var(--hrms-accent);
    padding-left: 10px;
}

/* Problem (案2の白背景で上長を安心させる) */
.k-problem {
    background: #fff;
    padding: 80px 0;
}
.k-problem__inner {
    border: 2px solid var(--hrms-blue);
    background: var(--hrms-gray-bg);
}
.k-problem__answer span {
    color: var(--hrms-blue);
    background: linear-gradient(transparent 70%, var(--hrms-accent) 70%);
}

/* Strength (案3のガレージ感を出す) */
.k-strength {
    padding: 80px 0;
    /* セクション全体に質感を持たせる */
    background: var(--hrms-dark-bg);
    color: #fff;
}
.k-strength .hrms-section-title { color: #fff; }
.k-strength__item {
    background: rgba(255, 255, 255, 0.05); /* ほんのり透ける白 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--hrms-accent); /* イエローのライン */
    color: #fff;
}
.k-strength__num {
    color: var(--hrms-blue);
    opacity: 0.5;
}

/* ボタン（LINEはそのまま、通常ボタンをイエローに） */
.hrms-btn--primary {
    background-color: var(--hrms-accent);
    color: #fff; /* イエロー背景にはネイビー文字が一番読みやすい */
    font-weight: 900;
}
.hrms-btn--primary:hover {
    background-color: #e6ba00;
    color: var(--hrms-blue);
}

/* Cars (案2の交互配置) */
.k-cars {
    background: #fff;
    padding: 80px 0;
}
.k-car-card {
    background: var(--hrms-blue);
    border-bottom: 4px solid var(--hrms-accent);
}



/* Responsive */
@media (max-width: 991px) {
    .k-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .k-hero__btns {
        justify-content: center;
    }

    .k-hero__image {
        order: -1;
        /* max-width: 400px; */
        margin: 0 auto;
    }

    .k-strength__item {
        flex-direction: column;
        gap: 10px;
    }
}







@charset "utf-8";

/* ===================================
  HERO
=================================== */
.lp-hero {
  position: relative;
  overflow: hidden;
}

/*  confirms SP: full-width photo */
.lp-hero__media {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: cover;
  /* background-position: center; */
  background-position: bottom;
}

/* text area overlays top-left on image */
.lp-hero__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero__contentInner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 120px;
}

.lp-hero__lead {
  margin: 0 0 10px 0;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  display: inline-block;
  letter-spacing: .02em;
  font-size: clamp(18px, 3.4vw, 34px);
  padding: 10px;
  align-self: flex-start;
}

.lp-hero__title {
  font-weight: 800;
  color: var(--accent);
  background-color: #fff;
  padding: 10px;
  letter-spacing: .02em;
  font-size: clamp(18px, 3.2vw, 32px);
  align-self: flex-start;
}

/* circle CTA */
.lp-heroCta {
  position: absolute;
  left: 6%;
  bottom: 10%;
  width: 230px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  /* background: var(--iemitsu-yellow); 画像にするときはなし */
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  /* padding: 30px; 画像にするときはpaddingなし */
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
  /* border: 10px solid var(--accent); 画像にするときはなし */
  box-sizing: border-box;
  gap: 0;
}

.lp-heroCta__en {
  display: block;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 23px;
  opacity: .95;
}

.lp-heroCta__jp {
  display: block;
  font-weight: 900;
  line-height: 1.2;
  font-size: 30px;
}

@media (max-width: 767px) {

  /* 下部固定CTAの高さ（現状 64px） */
  :root {
    --bottomCtaH: 74px;
    --headerH: 73px;
  }

  /* 1画面目の器：下にintro、上にhero（残り全部） */
  .lp-heroStage {
    height: calc(100vh - var(--headerH));
    display: grid;
    grid-template-rows: 1fr auto;
    /* 上：hero / 下：intro */
    padding-bottom: var(--bottomCtaH);
    /* 固定CTA分を差し引く */
  }

  /* ヒーローはグリッド内で完結させる */
  .lp-hero {
    position: relative;
    overflow: hidden;
    min-height: 0;
    /* gridで縮められるように */
  }

  /* 画像をhero枠いっぱいに */
  .lp-hero__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  /* テキストはhero枠内で */
  .lp-hero__content {
    position: relative;
    height: 100%;
    z-index: 2;
  }

  .lp-hero__contentInner {
    height: 100%;
    padding-top: 45px;
    padding-bottom: 120px;
    /* 円CTAと被らない逃げ */
    justify-content: flex-start;
  }

  /* 円CTAはheroの下寄り中央へ */
  .lp-heroCta {
    left: 20%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 140px;
    /* padding: 20px; 画像にするときはpaddingなし */
    border: 5px solid var(--accent);
  }

  .lp-heroCta__en {
    font-size: 15px;
  }

  .lp-heroCta__jp {
    font-size: 18px;
  }

  /* introは1画面目の最下段に */
  .lp-intro {
    padding: 14px 0 16px;
    /* 少し詰めると見栄え良い */
  }

  /* もともと body に padding-bottom を入れてた場合、SPだけ解除してOK */
  body {
    padding-bottom: 0;
  }




}

@media screen and (min-width:768px) and (max-width:1023px) {
  .lp-hero__contentInner {
    padding-top: 80px;
    padding-left: 10%;
  }

  .lp-hero__media {
    height: 550px;
  }

  /* CTAは少し大きく */
  .lp-heroCta {
    width: 120px;
    left: 10%;
    bottom: 12%;
    /* padding: 15px; 画像にするときはpaddingなし */
    border: 5px solid var(--accent);
  }

  .lp-heroCta__en {
    font-size: 10px;
  }

  .lp-heroCta__jp {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {

  .lp-hero__contentInner {
    padding-top: 90px;
  }
}

/* ===================================
  Intro band
=================================== */
.lp-intro {
  background: var(--cream);
  padding: 18px 0 22px;
}

.lp-intro__text {
  margin: 0;
  text-align: center;
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(14.1px, 3vw, 24px);
  display: block !important;
}

.lp-intro .lp-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-intro .lp-container img {
  width: clamp(30px, 12vw, 140px);
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .lp-intro__text {
    padding: 30px 0;
  }
}

@media screen and (max-width:1023px) {
  .lp-intro .lp-container {
    flex-direction: column;
  }

  .lp-intro .lp-container img {
    width: 100px;
  }
}

/* ===================================
  LINE Banner
=================================== */
.lp-lineBanner {
  padding: 45px 0 45px 0;
}

.lp-lineBanner__box {
  background: var(--hrms-border);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  align-items: center;
  border-radius: 6px;
}

.lp-lineBanner__kicker {
  margin: 0 0 10px;
  font-weight: 800;
  color: #111;
  /* font-size: 14px; */
}

.lp-lineBanner__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--lineGreen);
  color: #fff;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 0px;
  width: 100%;
  max-width: 280px;
}

.lp-lineBanner__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #222;
}

.lp-lineBanner__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 2px;
}

.lp-lineBanner a {
  display: block;
  margin: 0 auto;
  max-width: 760px;
}

.lp-lineBanner a:hover {
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .lp-lineBanner__box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-lineBanner__kicker {
    text-align: center;
  }

  .lp-lineBanner__btn {
    margin: 0 auto;
  }

  .lp-lineBanner__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lp-lineBanner__right {
    max-width: 250px;
    margin: 0 auto;
    width: 100%;
  }
}


@media screen and (min-width:1024px) {

  /* LINE banner：PCは余白UP */
  .lp-lineBanner__box {
    padding: 25px;
    grid-template-columns: 1fr 240px;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lp-lineBanner__right {
    width: 240px;
  }

  .lp-lineBanner__kicker {
    font-size: 18px;
  }
}

/* ===================================
  PROBLEM
=================================== */
.lp-problem {
  /* padding: 60px 0px; */
  position: relative;
  display: flex;
    flex-direction: column;
    background-color: rgba(0,0,0,.3);
}

.k-problem__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 3;
}

.k-problem__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.k-problem .lp-container {
    position: relative;
    z-index: 5;
}

.lp-sectionKicker {
  margin: 0 0 8px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: 34px;
}

.lp-problem__title {
  margin: 0 auto 18px auto;
  text-align: center;
  font-weight: 900;
  color: #fff;
  /* font-size: 20px; */
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1.0);
}

.lp-problem__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  /* gap: 16px; */
  max-width: 730px;
}

.lp-problem__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
}

.lp-problem__icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}

.lp-problem__icon img {
  width: 75px;
  height: auto;
  border-radius: 9999px;
}

.lp-problem__text {
  margin: 0;
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 2px;
  padding-left: 40px;
  position: relative;
  font-weight: 700;
  /* border-bottom: 1px solid var(--accent); */
  font-size: clamp(18px,3vw,22px);
}

.lp-problem__text span {
    color: var(--hrms-lp-red);
    font-weight: bold;
}

@media screen and (min-width:1024px) {

  /* PROBLEM：PCは中央寄せ感を出す */
  .lp-problem__list {
    width: min(860px, 100%);
    margin-inline: auto;
    /* max-width: 700px; */
  }

  .lp-problem__item {
    grid-template-columns: 1fr;
  }

  .lp-problem__item--flip {
    grid-template-columns: 1fr 100px;
  }

  .lp-problem__icon {
    width: 100px;
    height: 100px;
  }

  .lp-problem__icon img {
    width: 100px;
  }
}



/* ===================================
  Bottom fixed CTA
=================================== */
.lp-bottomCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 74px;
}

.lp-bottomCta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  gap: 10px;
}

.lp-bottomCta__btn--line {
  background: var(--lineGreen);
  color: #fff;
}

.lp-bottomCta__btn--contact {
  background: var(--cream);
  color: var(--accent);
}

@media screen and (min-width:768px) {
  .lp-bottomCta {
    display: none;
  }
}

/* ===================================
  PC layout (任せ前提の“整えるだけ”)
=================================== */
@media (min-width: 1024px) {

  /* HERO：PCだけ少し高さを出す */
  .lp-hero__media {
    aspect-ratio: 16 / 9;
    /* min-height: 500px; */
    height: 900px;
  }
}

@media screen and (min-width:1440px) {

  /* CTAは少し大きく */
  .lp-heroCta {
    width: 250px;
    left: calc((100vw - 1120px) / 2);
    bottom: 12%;
  }
}


/* =========================
  Header
========================= */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}

.lp-header__inner {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.lp-header__menuBtn {
  width: 48px;
  height: 48px;
  border: 1px solid #222;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lp-header__menuIcon {
  width: 22px;
  height: 14px;
  position: relative;
}

.lp-header__menuIcon::before,
.lp-header__menuIcon::after,
.lp-header__menuIcon {
  background: none;
}

.lp-header__menuIcon::before,
.lp-header__menuIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
}

.lp-header__menuIcon::before {
  top: 0;
}

.lp-header__menuIcon::after {
  bottom: 0;
}

.lp-header__menuIcon {
  border-top: 2px solid #222;
  border-bottom: 2px solid transparent;
  /* ダミー */
}

/* drawer（将来用） */
.lp-drawer {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.lp-drawer.is-open {
  display: block;
}

.lp-drawer__list {
  list-style: none;
  margin: 0;
  padding: 10px var(--gutter) 16px;
  display: grid;
  gap: 10px;
}

.lp-drawer__list a {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
}

/* =========================================================
  Page2: PROBLEM（問題提起 / 1-3）
========================================================= */

.lp-problem2 {
  background: #fff;
  padding: 54px 0 100px;
  position: relative;
}

.lp-problem2__inner {
  text-align: center;
}

.lp-problem2__kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: clamp(30px, 6vw, 58px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-problem2__title {
  width: min(860px, 100%);
  margin: 0 auto 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(18px, 3.2vw, 30px);
}

.lp-problem2__body {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: left;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 2.0;
}

.lp-problem2__body p {
  margin: 0 0 16px;
}


.lp-hl {
  color: var(--accent);
  font-weight: 900;
}

section.lp-problem2:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 50%, var(--cream) 50%);
}

/* =========================================================
  Page2: WHY（なぜいえみつなのか / 1-4）
========================================================= */
.lp-why {
  background: var(--cream);
  padding: 20px 0 80px;
}

.lp-why__inner {
  text-align: center;
}

.lp-why__kicker {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: clamp(30px, 6vw, 58px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-why__title {
  margin: 0 0 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.35;
  font-size: clamp(20px, 3.4vw, 34px);
}

.lp-why__body {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: left;
  font-size: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}

.lp-why__body p {
  margin: 0 0 16px;
  line-height: 2.0;
}

.lp-why-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* =========================================================
  Page2 : 選択肢ビジュアル導入
========================================================= */
.lp-choicesVisual {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 画像に暗幕をかける */
.lp-choicesVisual__overlay {
  background: rgba(0, 0, 0, .55);
  position: relative;
}

.lp-choicesVisual__bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0.5;
}

.lp-choicesVisual__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 中身 */
.lp-choicesVisual__inner {
  /* min-height: 380px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 68px;
  position: relative;
  z-index: 5;
}

/* Plan（小さい英字） */
.lp-choicesVisual__kicker {
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: .08em;
  color: #f3c46b;
  font-size: 18px;
}

/* メイン見出し */
.lp-choicesVisual__title {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  letter-spacing: .04em;
  font-size: clamp(22px, 3.6vw, 36px);
  color: #fff;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 0.25em;
}

/* 説明文 */
.lp-choicesVisual__text {
  margin: 20px 0 14px;
  line-height: 2.0;
  font-size: 20px;
}

/* 注釈 */
.lp-choicesVisual__note {
  margin: 0;
  opacity: .9;
  font-size: 14px;
  line-height: 1.9;
}

/* SP調整 */
@media (max-width: 767px) {
  .lp-choicesVisual__inner {
    /* min-height: 300px; */
    padding: 44px 0 48px;
  }

  .lp-choicesVisual__title {
    font-size: 22px;
  }
}


/* =========================================================
  Choices intro
========================================================= */
.lp-choicesIntro {
  padding: 44px 0 10px;
  text-align: center;
}

.lp-choicesIntro__title {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(18px, 3.2vw, 30px);
}

.lp-choicesIntro__lead {
  width: min(760px, 100%);
  margin-inline: auto;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 2.0;
}

.lp-choicesIntro__lead p {
  margin: 0 0 14px;
}

/* =========================================================
  6パターン一覧（文字のみ）
========================================================= */
.lp-choiceList {
  padding: 30px 0 72px;
  background: #fff;
}

.lp-choiceList__title {
  margin: 0 0 36px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.5;
  font-size: clamp(20px, 3.2vw, 32px);
}

.lp-choiceList__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

/* 1項目 */
.lp-choiceList__item {
  /* padding: 22px 20px; */
  border: 1px solid rgba(0, 0, 0, .12);
  background: #faf7f1;
  text-align: center;
  display: grid;
    /* justify-content: center;
    align-items: center;
    grid-template-rows: 2.5fr 1fr; */
}

/* タイトル文字 */
.lp-choiceList__name {
  margin: 0;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 20px;
  color: #1b1b1b;
  padding: 10px;
}

.lp-choiceList__name span {
  color: var(--accent);
  display: block;
  font-weight: 900;
}

/* PCでは2カラム */
@media (min-width: 768px) {
  .lp-choiceList__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
  }
}

/* SPでは余白を少し詰める */
@media (max-width: 767px) {
  .lp-choiceList {
    padding: 24px 0 56px;
  }

  .lp-choiceList__name {
    font-size: 18px;
  }

  .lp-choiceList__name span {
    display: inline;
    font-weight: 400;
  }
}

/* =========================================================
  STRENGTHS（PDFレイアウト版：SPでも横並び維持）
========================================================= */
.k-strength__catch span {
  background: linear-gradient(#fff,var(--hrms-accent),#333  99%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  /* position: absolute; */
  /* right: 0; */
  /* bottom: 0px; */
  z-index: 11;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.05);
}



.lp-strengths2 {
  padding: 70px 0 78px;
  background: var(--hrms-blue);
}

.lp-strengths2__kicker {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: clamp(30px, 6vw, 58px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-strengths2__title {
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(20px, 3.2vw, 34px);
}

.lp-strengths2__list {
  display: grid;
  gap: 26px;
}

/* ---------------------------------------------------------
  1ブロック：基本（SPは横並び／grid-areasで安定）
--------------------------------------------------------- */
.lp-strength2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "head media";
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
}

/* テキスト側 */
.lp-strength2__head {
  grid-area: head;
  min-width: 0;
  /* 折返し安全 */
}

.lp-strength2__detail {
    /* color: #333; */
}

/* 円画像側 */
.lp-strength2__media {
  grid-area: media;
  margin: 0;
  width: clamp(92px, 24vw, 140px);
  aspect-ratio: 1/1;
  /* border-radius: 999px; */
  overflow: hidden;
  justify-self: end;
}


.lp-strength2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 番号 */
.lp-strength2__no {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1;
}

/* 見出し */
.lp-strength2__heading {
  margin: 0 0 10px;
  font-weight: 900;
  /* color: var(--accent); */
  letter-spacing: .02em;
  line-height: 1.6;
  font-size: clamp(22px, 3.5vw, 30px);
}

/* 詳しく見る（あなたの現状デザインを維持） */
.lp-strength2__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: #fff;
  background: var(--accent);
  padding: 10px;
  letter-spacing: .02em;
  text-underline-offset: 4px;
  font-size: 14px;
}

/* 下のオレンジ線 */
.lp-strength2__line {
  grid-column: 1 / -1;
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  margin-top: 10px;
}

/* ---------------------------------------------------------
  SP（〜767px）：2番だけ画像を左に（交互配置）
  ※ orderは使わない（崩れ防止）
--------------------------------------------------------- */
@media (max-width: 767px) {
  .lp-strength2--left {
    grid-template-columns: auto 1fr;
    grid-template-areas: "media head";
  }

  .lp-strength2--left .lp-strength2__media {
    justify-self: start;
  }

  .lp-strength2__heading {
    display: inline-block!important;
  }

  
  .lp-strength2 {
    grid-template-columns: 1fr;
    grid-template-areas: "media"
    "head";
  }

  .lp-strength2__media {
    width:100%;
    aspect-ratio: 16/9;
  }
}

/* ---------------------------------------------------------
  768px以上：1〜3すべて「画像左／文字右」に統一
--------------------------------------------------------- */
@media (min-width: 768px) {

  .lp-strength2,
  .lp-strength2--left {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: 160px 1fr;
    grid-template-areas: "media head";
  }

  .lp-strength2__media,
  .lp-strength2--left .lp-strength2__media {
    justify-self: start;
  }
}

/* PC（1024px以上）：余白と画像サイズ */
@media (min-width: 1024px) {
  .lp-strength2 {
    gap: 30px;
    padding-bottom: 18px;
  }

  .lp-strength2__heading {
    font-size: clamp(18px, 4vw, 26px);
  }

  .lp-strength2__media {
    width: clamp(140px, 20vw, 240px);
  }

  .lp-strength2,
  .lp-strength2--left {
    /* grid-template-columns: auto 1fr; */
    grid-template-columns: 240px 1fr;
    grid-template-areas:
      "media head";
  }

  .lp-strengths2 .lp-container {
  width: min(860px, 100%);
  margin: 0 auto;
}

}


/* =========================================================
  OUR POLICY（3つのお約束）
========================================================= */
.lp-policy {
  padding: 72px 0 80px;
  background: #fff;
}

.lp-policy__kicker {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: clamp(28px, 6vw, 54px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-policy__title {
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.45;
  font-size: clamp(20px, 3.2vw, 34px);
}

.lp-policy__list {
  display: grid;
  gap: 28px;
}

/* 1アイテム */
.lp-policyItem {
  position: relative;
  padding-bottom: 18px;
  display: grid;
      grid-template-columns: 1fr 150px;
    gap: 15px;
    width: 100%;
    /* max-width: 700px; */
    margin: 0 auto;
    border-bottom: 2px solid var(--accent);
}

/* 数字：控えめ・補助的に */
.lp-policyItem__no {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, .35);
  /* 強みと被らない薄さ */
  font-size: 14px;
  display: none;
}

/* 見出し：アクセント背景＋白文字 */
.lp-policyItem__heading {
  display: inline-block;
  /* 帯感を出す */
  margin: 0 0 14px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.5;
  font-size: clamp(16px, 2.8vw, 22px);
}

.lp-policyItem__text {
  line-height: 2.0;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.lp-policyItem__text p {
  margin: 0 0 6px;
  display: inline-block !important;
}

/* 下線（PDFのオレンジ線の雰囲気） */
.lp-policyItem__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  margin-top: 14px;
}

.lp-policyItem .inner-img {
  width: 100%;
  aspect-ratio: 1/1;
}

.lp-policyItem .inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PCは横幅をやや締めて読みやすく */
@media (min-width: 1024px) {
  .lp-policy__list {
    width: min(860px, 100%);
    margin-inline: auto;
  }

  /* PCでは少しだけ余白を広げる */
  .lp-policyItem__heading {
    padding: 12px 20px;
    font-size: clamp(18px, 2vw, 24px);
  }
}


@media screen and (max-width: 768px) {
  .lp-policyItem {
    grid-template-columns: 1fr;
  }

  .lp-policyItem .inner-img {
    aspect-ratio: 16/9;
  }

  .lp-policyItem__text p {
    font-size: 90%;
    line-height: 1.6;
}

.lp-policyItem__heading {
  margin-bottom: 10px;
}
}

/* =========================================================
  FLOW（縦ライン＋丸番号）
========================================================= */
.lp-flow {
  padding: 72px 0 80px;
  /* background: var(--cream); */
  position: relative;
  background: linear-gradient(rgba(0,58,130,0.5),rgba(0,58,130,1.0));
}

.lp-flow__bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0.5;
}

.lp-flow .lp-container {
  position: relative;
  z-index: 5;
}

.lp-flow__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}


.lp-flow__kicker {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--hrms-border);
  font-size: clamp(28px, 6vw, 54px);
  display: flex !important;
    align-items: center;
    justify-content: center;
}

.lp-flow__title {
  margin: 0 0 34px;
  text-align: center;
  font-weight: 900;
  color: var(--hrms-accent);
  line-height: 1.45;
  font-size: clamp(20px, 3.2vw, 34px);
}

.k-faq .lp-flow__title {
  color: var(--hrms-blue);
}


/* 右側テキスト */
.lp-flow__body {
  padding-top: 2px;
  padding: 15px 15px;
  background: #fff;
}

.lp-flow__body h4 {
  color: var(--hrms-blue);
  font-weight: bold;
  line-height: 1.8em;
}

.lp-flow__text:last-child {
  margin-bottom: 0;
}

.lp-flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  /* width: min(500px, 100%); */
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.lp-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}

/* 丸番号 */
.lp-flow__dot {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--hrms-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  /* 線より前 */
}

/* 線：各liの「中央」から上下に伸ばす */
.lp-flow__item::before {
  content: "";
  position: absolute;
  left: 30px;
  /* 丸の中心（lp-flow__dotの半分）に合わせる */
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hrms-accent);
  z-index: 1;
}

/* ①：上には伸ばさない */
.lp-flow__item:first-child::before {
  top: 50%;
}

/* 最後：下には伸ばさない */
.lp-flow__item:last-child::before {
  bottom: 50%;
}

/* テキスト */
.lp-flow__text {
  margin: 0;
  color: #333;
  line-height: 1.9;
  /* font-size: 20px; */
  /* background: #fff; */
  /* padding: 10px 15px; */
  display: flex!important;
  align-items: center;
}

/* SP微調整 */
@media (max-width: 767px) {
  .lp-flow__item {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }

  .lp-flow__dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  /* 線より前 */
}

  .lp-flow__item::before {
    left: 20px;
  }

  .lp-flow__text {
    font-size: 16px;
    /* padding: 10px; */
    line-height: 1.6;
  }
}

@media screen and (min-width:1024px) {
  .lp-flow {
    /* margin-top: 40px; */
  }
}

.lp-flow__item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .55s ease,
    transform .55s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.lp-flow__item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* アニメ苦手な人の設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .lp-flow__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   FAQ (accordion)
========================================================= */
#sec-faq {
  padding: 72px 0 80px;
  background: var(--hrms-accent);
}

.faq__title{
  text-align: center;
  line-height: 1.1;
  margin: 0 0 18px;
}
.faq__titleEn{
  display:block;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--iemitsu-lightyellow);
  font-size: clamp(22px, 3.2vw, 34px);
}
.faq__titleJa{
  display:block;
  margin-top: 6px;
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(18px, 2.6vw, 26px);
}

.faq__list{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

/* item */
.faqItem{
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
}
.faqItem__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #222;
}
.faqItem__q::-webkit-details-marker{ display:none; } /* Safari/Chrome */

.faqItem__badge{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.faqItem__badge--q{
  background: var(--hrms-blue);
  color:#fff;
}
.faqItem__badge--a{
  background: #ffffff;
  color:#666;
  border: 1px solid rgba(0,0,0,.12);
}

.faqItem__qText{
  font-size: clamp(15px, 3.5vw, 18px);
  line-height: 1.4;
}

/* plus / minus */
.faqItem__icon{
  width: 24px;
  height: 24px;
  position: relative;
  justify-self: end;
}
.faqItem__icon::before,
.faqItem__icon::after{
  content:"";
  position:absolute;
  inset: 50% 0 auto 0;
  height: 4px;
  background: var(--hrms-blue);
  border-radius: 999px;
  transform: translateY(-50%);
}
.faqItem__icon::after{
  width: 4px;
  height: 24px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* answer */
.faqItem__a{
  padding: 0 16px 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
}
.faqItem__aText{
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.7;
}

/* open state */
.faqItem[open] .faqItem__q{
  padding-bottom: 10px;
}
.faqItem[open] .faqItem__icon::after{
  opacity: 0; /* + の縦棒を消して - にする */
}


/* CTA全体のラップ */
.k-cta {
    position: relative;
    padding: 40px 0 0 0;
    overflow: hidden;
    /* background-color: #ffcf00; */ /* 背景画像がない時の保険 */
}

/* 背景画像とオーバーレイ */
.k-cta__bg {
    position: absolute;
    inset: 0;
    /* background: url('../images/kaitori-cta-bg.png') no-repeat center center; */
    background-size: cover;
}
.k-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,58,130,0.5) 0%, rgba(0,58,130,0.7) 100%);
    z-index: 3;
    background: linear-gradient(45deg, rgb(13 110 253 / 50%), rgb(255 0 0 / 50%));
}

.k-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1.0;
  z-index: 2;
}

.k-cta__inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 5;
    width: 100%;
}

/* テキストコンテンツ */
.k-cta__content {
    flex: 1;
    padding-bottom: 40px;
    width: 92%;
}

.k-cta__sub {
    font-size: clamp(18px,4vw,20px);
    font-weight: bold;
    color: #fff;
    background: #d32f2f; /* 注目を集める赤 */
    padding: 2px 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.k-cta__title {
    font-size: clamp(24px, 6.3vw, 48px);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 900;
    text-align: left;
    text-shadow: 0px 0px 10px #000;
}

.k-cta__title span {
    color: var(--hrms-accent); /* #ffcf00 */
}

/* アクションボックス */
.k-cta__action-box {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* 電話エリア */
.k-cta__tel {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    flex: 1;
    background: linear-gradient(#ffcf00, #ff8400 100%);
}

.k-cta__tel-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.k-cta__tel-label span {
    color: var(--hrms-blue);
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 8px;
}

.k-cta__tel-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.k-cta__tel-time {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

/* フォームボタン */
.k-cta__btn-wrap {
    flex: 1;
}

.k-cta__btn-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(to bottom, #ff8c00, #ff4500); /* 目立つオレンジグラデ */
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    padding: 20px;
}

.k-cta__btn-form:hover,
.k-cta__tel:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.k-cta__btn-sub {
    font-size: 13px;
    margin-bottom: 5px;
}

.k-cta__btn-main {
    font-size: 20px;
    font-weight: bold;
}

/* 人物画像 */
.k-cta__person {
    width: 35%;
    max-width: 350px;
    margin-left: 20px;
}

.k-cta__person img {
    width: 100%;
    height: auto;
    vertical-align: bottom; /* 下の隙間を消す */
}
.k-hero__car {
    margin: 0; /* figureのデフォルト余白をリセット */
    line-height: 0; /* 下部の微小な隙間を解消 */
}

.k-hero__car img {
    width: 100%;
    height: auto;
    vertical-align: bottom; /* セクションの底面に合わせる */
}
/* レスポンシブ */
@media (max-width: 991px) {
    .k-cta__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .k-cta__content {
        padding-bottom: 20px;
        max-width: 600px;
    }
    .k-cta__action-box {
        flex-direction: column;
        width: 100%;
    }
    .k-cta__person {
        width: 60%;
        margin-left: 0;
        margin-top: 20px;
    }
    .k-cta__bg {
        /* スマホでは人物が被るので背景を暗く調整 */
    }
}