@charset "UTF-8";

/* main_visual */
/* 背景の固定レイヤー（stage1） */
.global_bg_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 2700px;
  background-image: url("/lp4/img/bg_layer_stage1.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto; /* 横をフィットさせる */
  z-index: -999;
  pointer-events: none;
  transition: none; /* ← フェードなしにする */
}
/* stage2の背景 */
body.is-stage2 .global_bg_layer {
  background-image: url("/lp4/img/bg_layer_stage2.jpg");
}
/* stage3の背景 */
body.is-stage3 .global_bg_layer {
  background-image: url("/lp4/img/bg_layer_stage3.jpg");
}
/* 画面が狭いときは少しズームして縦を伸ばす */
@media (max-width: 1200px) {
  .global_bg_layer {
    background-size: 130% auto;
  }
}
@media (max-width: 800px) {
  .global_bg_layer {
    background-size: 160% auto;
  }
}

/* hero全体 */
.hero_section {
  position: relative;
  z-index: 100;
  padding-top: 120px;   /* ヘッダー下の余白。後で詰める */
  padding-bottom: 200px;/* 下のネイビー帯含めて余裕もたせてる */
  overflow: visible;
}

/* 1440pxのインナーラインに沿わせる */
.hero_inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 600px; /* 仮。illustの高さに合わせて後で微調整 */
}

/* 左カラム（キャッチコピー） */
.hero_text {
  position: relative;
  max-width: 680px; /* 見出しの行幅イメージ */
  z-index: 300;
  color: #fff;
  /* ここで文字色白にしてるけど、
     実際は濃い青の帯を背景に敷く予定だからそこでも白指定する */
}
.topic {
  display: inline-block;
  position: relative;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 36px;
  color: #1a1a1a;
  background: #FFF000;
  border-radius: 30px;
  margin-bottom: 24px;
}
.topic::after {
  content: "";
  position: absolute;
  left: 31%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #FFF000 transparent transparent transparent;
}
.hero_headline {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #fff;
}

/* 各行ラッパ */
.hero_headline .headline_line {
  display: block;
  margin-bottom: 8px;
  position: relative;
}

/* 本体（最終状態で置いておく帯＋文字） */
.hero_headline .headline_fill {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(to right, #224371 0%, #3B79CC 100%);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  z-index: 1;
}

/* 可視マスク：最初は全面を白で隠す → 右に抜けつつ透明化して消える */
.hero_headline .headline_fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;      /* 隠す色。ここは白のままでOK */
  transform: translateX(0);    /* 最初は全部覆う */
  opacity: 1;                  /* 完全に隠れた状態 */
  animation: revealMask 0.4s ease-out forwards;
  z-index: 2;
}

/* 行ごとのタイミング調整 */
.hero_headline .headline_line:nth-child(1) .headline_fill::after {
  animation-delay: 0s;
}
.hero_headline .headline_line:nth-child(2) .headline_fill::after {
  animation-delay: 0.15s;
}
.hero_headline .headline_line:nth-child(3) .headline_fill::after {
  animation-delay: 0.3s;
}

/* ←これだけを残す。ほかの revealMask は消すこと！ */
@keyframes revealMask {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.hero_headline .headline_txt {
  letter-spacing: 7.5px;
}
.hero_lead {
  font-size: 2.4rem;
  line-height: 1.7;
  color: #001b3a; /* 濃いめの青グレー想定 */
  margin-bottom: 8px;
  font-weight: 500;
}
.hero_lead .mark {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #000;
}
.hero_lead .mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em; /* ←文字下からの高さ調整 */
  width: 100%;
  height: 0.55em; /* ←黄色マーカーの高さ */
  background-color: #FFF000;
  z-index: -1; /* ←文字の下に敷く */
}
/* 右カラム（イラスト） */
.hero_illust {
  position: absolute;
  top: -120px;
  right: -270px;
  width: 1650px;
  max-width: none;
  z-index: 250;
  pointer-events: none;
}
.hero_illust img {
  width: 100%;
  height: auto;
  display: block;
}
/* デコレイヤー（パララックス） */
.hero_deco {
  position: absolute;
  inset: 0; /* hero_inner基準じゃなくhero_section基準にしたいなら親変える */
  pointer-events: none;
  z-index: 260;
}
/* 各レイヤーはそれぞれ自由に配置 */
.hero_deco .deco-layer {
  position: absolute;
  will-change: transform;
}
/* 仮の配置。実際は目で合わせる */
.hero_deco .layer1 {
  top: 70px;
  left: 727px;
  width: 170px;
}
.hero_deco .layer2 {
  top: 50px;
  right: 150px;
  width: 270px;
}
.hero_deco .layer3 {
  top: 10px;
  right: -180px;
  width: 200px;
}
/* main_visual end*/

/* intro */
.introduction {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 250px;
  margin-bottom: 250px;
  padding: 0 20px;
  background-color: #F1F7FF;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  z-index: 0;
  overflow: visible;
}
/* 背景デコを最背面に固定。アニメの再合成に巻き込ませない */
.intro_bg {
  position: absolute;
  left: 50%;
  width: 1920px;
  height: 300px;
  transform: translateX(calc(-50% + 1px));
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: center;
  pointer-events: none;

  opacity: 1;
  z-index: -1;          /* ←ここが一番大事：常に一番下で描画 */
  will-change: auto;    /* 明示的に「これ動かさないよ」って伝える */
}
.intro_bg_top {
  top: -286px;
  background-image: url("/lp4/img/intro_bg_deco_up.png");
  background-position: top center;
}
.intro_bg_bottom {
  bottom: -285px;
  background-image: url("/lp4/img/intro_bg_deco_down.png");
  background-position: bottom center;
}
.introduction_inner {
  position: relative;
  z-index: 1;          /* 背景より前に出す */
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
/* タイトルブロック周り */
.intro_ttl_cont {
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro_ttl_cont::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -140px;
  width: 100%;
  height: 300px;
  background: url("/lp4/img/intro_ttl_deco_top.svg") no-repeat center top / contain;
  pointer-events: none;
  z-index: 0;
}
.intro_ttl_cont::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom:-149px;
  width: 100%;
  height: 300px;
  background: url("/lp4/img/intro_ttl_deco_bottom.svg") no-repeat center bottom / contain;
  pointer-events: none;
  z-index: 0;
}
.intro_ttl_wrap {
  position: relative;
  z-index: 1; /* テキストを上下ラインより上に */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
/* タイトル本体（斜め） */
.intro_ttl {
  position: relative;
  z-index: 1;
  transform: rotate(-8.5deg);
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 4.8rem;
  font-weight: 700;
  color: #0E1C2F;
  line-height: 1.4;
}
/* 各行 */
.intro_line {
  display: flex;
  align-items: flex-end;
  gap: .4rem;

  /* ★アニメ完全に停止して、最初から最終状態にする */
  transform: translateX(0);
  opacity: 1;
  animation: none;

  margin-bottom: 0.4em;
}
.intro_line:last-child {
  margin-bottom: 0;
}
/* 2行目だけ遅らせる */
.intro_line:nth-child(2) {
  animation-delay: 0s;
}
/* 帯つきの強調ワード */
.intro_band {
  display: inline-block;
  background: linear-gradient(90deg, #0E1C2F, #2C5895);
  color: #fff;
  padding: 0 16px 8px;
  transform: skew(-20deg);
  font-size: 8rem;
  line-height: 1;
}
/* 帯の中の白文字 */
.intro_text {
  display: inline-block;
  transform: skew(0deg);
  line-height: 1;
  color: #fff;
}
/* 後ろのテキスト */
.intro_tail {
  display: inline-block;
  transform: skew(-20deg);
  transform-origin: bottom left;
  font-size: 4.8rem;
  line-height: 1.2;
  color: #0E1C2F;
}
/* 横から出るアニメーション（テキスト専用） */
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.introduction_body {
  position: relative;
  z-index: 1;
  /* ここがアニメ対象になってもOKなゾーン */
  opacity: 1;
  transform: none;
}
/* intro end */

/* badvoice */
.bad_voice {
  padding: 80px 0;
}
.bad_voice_inner {
  max-width: 1440px;         /* セクション全体の幅を1440に統一 */
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.bv-title {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.bv-sub_ttl {

}
.bv-sub_ttl p {
  font-size: 2.4rem;
  text-align: center;
}
.bv-sub_ttl_sec {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px auto;
  width: 40rem;
  height: 5.0rem;
  padding: 0 15px;
  background: #000;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 3.5rem;
}
.bv-title__h2 {
  margin: 0;
}
.bv-title__h2 img {
  display: block;
  margin: 0 auto;
  width: 75%;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.1s forwards;
  image-rendering: -webkit-optimize-contrast; /* ぼやけ防止 */
}
.bv-title_cara {
  position: absolute;
  right: 39px;
  top: 249px;
  width: 350px;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.4s forwards, wiggle 2.8s ease-in-out 0.8s infinite;
  transform-origin: 60% 40%;
}
.bad_voice_bubble{
  position: relative;
  background: url("/lp4/img/b_bubble_common.svg") no-repeat center top / contain;
  min-height: 177px;          /* 画像比率に合わせて調整 */
  padding: 60px 80px 0px 30px;   /* 文字の余白（調整ポイント） */
  background-position: calc(50% - 24px) top;
  background-size: 84%;
}
.bad_voice_text{
  max-width: 84%; 
  margin: 0 auto;
  text-align: left;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #fff;
}
.bad_voice_nameplate{
  position: relative;
  margin-top: -67px;
  margin-left: 56px;
  background: url("/lp4/img/b_nameplate_common.svg") no-repeat center / contain;
  min-height: 44px;           /* プレート高さ */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 8px 16px;
  width: 60%;
}
/* badvoice end */

/* overview */
.overview {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 250px;
  margin-bottom: 150px;
  padding: 160px 0;
  background-image: url("/lp4/img/overview_bg.png");
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.overview::before {
  content: "";
  position: absolute;
  top: -286px;
  left: 50%;
  width: 1920px;
  height: 300px;
  transform: translateX(calc(-50% + 1px));
  background-image: url("/lp4/img/overview_bg_deco_up.png");
  background-position: top center;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.overview::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  width: 1920px;
  height: 300px;
  transform: translateX(calc(-50% + 1px));
  background-image: url("/lp4/img/overview_bg_deco_down.png");
  background-position: bottom center;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.overview_inner {
  position: relative;
  z-index: 1;          /* 背景より前に出す */
  width: 1440px;
  max-width: 100%;     /* 画面が狭いときは縮むように保険 */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}
.ov_left_cont {
  width: 50%;
}
.ov_ttl_wrap {
  margin-bottom: 5.5rem;
}
.ov_ttl {
  font-size: 4.8rem;
  font-weight: bold;
  color: #2E6CC2;
}
.ov_ttl span{
  text-decoration-line: underline;
  text-decoration-color: #FFF000;   /* 線の色 */
  text-decoration-thickness: 18px;   /* 線の太さ */
  text-underline-offset: -8px;       /* 文字との距離 */
}
.ov_info {
  font-size: 2.0rem;
  margin-bottom: 1.5rem
}
.ov_info_wrap {
  background-color: #F1F7FF;
  border-radius: 0.5rem;
  padding: 2rem;
  box-sizing: border-box;
}
.ov_job_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1.5rem;
}
.ov_job_list li{
  width: 14rem;
  height: 4rem;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  background-color: #5688CC;
  border-radius: 0.3rem;
}
.ov_photo_wrap {
  display: flex;
  position: relative;
  margin-bottom: 3.5rem;
}
.ov_photo_wrap img{
  width: 60rem;

}
.ov_badge {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -100px;
  right: -97px;
  z-index: -1;
}
/* 中央の丸 */
.ov_badge__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background-color: #5a82c6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* 外側のテキストを載せる土台 */
.ov_badge__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  animation: spin 10s linear infinite;
  pointer-events: none; /* 念のため */
}
/* テキストを円の外周に沿わせる */
.ov_badge__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  /* いらないもの消す：余計なレイアウト影響を排除 */
  font-size: 0;
  line-height: 0;
}
/*
  下の仕組み：
  1. テキストを1文字ずつ並べ直して transform で角度をつけて円周に配置する
  2. JSで<span>を量産して角度を配る
  → CSSだけで完全に円周テキストをやろうとするとブラウザだけでは難しいので、
     現実的にはここでJSを1回だけ使うのが一番安定する
*/
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.ov_google_wrap {
  display: flex;
  justify-content: space-between;
  background-color: #F1F7FF;
  padding: 2.0rem;
}
.google_star {
  width: 23rem;
  border: solid 3px #5688CC;
  margin-right: 2.0rem;
  padding: 1.0rem;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
.google_star img{
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;

}
.google_star p{
  font-size: 1.6rem;
  text-align: right;
}
.g_message {
  font-size: 2.0rem;
}
.g_message span{
  display: block;
  font-size: 2.0rem;
  margin-bottom: 1.5rem;
}
/* overview end */

/* goodvoice */
.good_voice {
  padding: 80px 0;
}
.good_voice_inner {
  max-width: 1440px;         /* セクション全体の幅を1440に統一 */
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.gv-title {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.gv-title__h2 {
  margin: 0;
}
.gv-title__h2 img {
  display: block;
  margin: 0 auto;
  width: 75%;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.1s forwards;
  image-rendering: -webkit-optimize-contrast; /* ぼやけ防止 */
}
.gv-title__spark {
  position: absolute;
  right: 109px;
  top: -59px;
  width: 132px;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.4s forwards, wiggle 2.8s ease-in-out 0.8s infinite;
  transform-origin: 60% 40%;
}
.good_voice_cont {
  width: 100%;
}
.good_voice_list{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 24px;             /* 行×列の間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
}
.good_voice_item{
  position: relative;
  overflow: visible;          /* マスコットを被せる用 */
  width: auto;                /* 幅指定を消す */
}
.good_voice_item:nth-child(4n+2),
.good_voice_item:nth-child(4n+4){
  margin-top: 90px;
}
.voice_bubble{
  position: relative;
  background: url("/lp4/img/g_bubble_common.svg") no-repeat center top / contain;
  min-height: 177px;          /* 画像比率に合わせて調整 */
  padding: 60px 80px 0px 30px;   /* 文字の余白（調整ポイント） */
  background-position: calc(50% - 30px) top;
  background-size: 84%;
}
.bubble_frame{
  display:none;
}
.voice_text{
  max-width: 84%; 
  margin: 0 auto;
  text-align: left;
  line-height: 1.5;
  font-size: 1.6rem;
}
.voice_avatar{
  margin-top: -53px;
  display: flex;
  justify-content: center;
}
.voice_avatar img {
  width: 23rem;
  height: auto;
  margin: 0 0 0 30px;
}
.voice_nameplate{
  position: relative;
  margin-top: -67px;
  margin-left: 56px;
  background: url("/lp4/img/nameplate_common.svg") no-repeat center / contain;
  min-height: 44px;           /* プレート高さ */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 8px 16px;
  width: 60%;
}
.plate_bg{ display:none; }
.voice_name {
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}
.voice_mascot{
  position: absolute;
  right: 4px;                   /* コンテナ右端を基準に */
  transform: translateX(16%); /* ちょいハミ出し演出（%は見た目で調整） */
  top: 14%;
  width: 90px;
  pointer-events: none;
}
/* goodvoice end */

/* support */
.support {
  position: relative;
}
.support_inner  {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8.0rem 2.0rem;
}


.support_main_ttl {
  position: relative;
  isolation: isolate;   /* ここで積層を閉じる */
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 100px;
}
.support-bg {
  position: absolute;
  left: 0;
  right: 8%;
  top: 60px;
  height: 14rem;    /* リード～タイトルをカバーする高さ */
  background: url("/lp4/img/support_sub_ttl_bg.svg") center / contain no-repeat;
  z-index: 2;       /* メイン背景より前、テキストより後ろ */
  pointer-events: none;
}
.support-lead-wrap {
  position: relative;
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.support-lead {
  position: relative;
  top: 22px;
  right: 50px;
  display: inline-block;
  padding: 0.5em 1.2em;
  font-size: 4.0rem;
  font-weight: 500;
  z-index: 3;
}
.support-title-wrap {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; 
}
.support-title-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/lp4/img/support_ttl_bg.svg") center / contain no-repeat;
  z-index: 1;
}
.support-title-wrap h2 {
  position: relative;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.3;
  z-index: 3;
}
/* 左右装飾（独立レイヤ） */
.support-deco {
  position: absolute;
  top: 0; bottom: 0;
  width: 34vw;
  pointer-events: none;
  z-index: 0;
}
.support-deco.left  { left: 0;  background: url("../img/support_bg_left.svg")  left center / contain no-repeat; }

.support-deco.right { right: 0; background: url("../img/support_bg_right.svg") right center / contain no-repeat; }

.support_sub_ttl {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4.5rem;
}
.support_sub_ttl::before {
  content: "";
  position: absolute;
  top: 105px;
  left: 72px;
  width: 3.5rem;
  height: 3.5rem;
  background: url("/lp4/img/support_num_poly.svg") center / contain no-repeat;
  /* 必要に応じて z-index を調整 */
  z-index: 1;
}
.support_sub_ttl img {
  position: relative;
  z-index: 2; /* 擬似要素より上に表示したい場合 */
  width: 15rem;
  margin-right: 30px;
}
h3.sup_ttl {
  font-size: 4.4rem;
  color: #224371;
  line-height: 5.0rem;
}
.support_content_inner {
  margin-bottom: 7.0rem;
}
.supincon_wrap {
  background: linear-gradient(90deg, #224371, #417FD7);
  display: flow-root;
  padding: 70px 0;
  border-radius: 5px;
}
.supincon_cover {
  max-width: 1200px;
  margin: 0 auto;
}
.sup_image {
  margin-bottom: 3rem;
}
ul.supcon01 {
  list-style:none;
  margin:0;
  padding:10px;
  display:flex;
  flex-wrap: nowrap;
  gap:16px;                  /* 必要なら余白は gap で */
  justify-content:space-between;
  box-sizing: border-box;
}
.supcon01 img {
  max-width: 30rem;  /* 既存の width を max-width に変更推奨 */
  width: 100%;
  height: auto;
}
.sup_point {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px 50px;
    border-radius: 0.5rem;
    padding: 2.0rem;
    background-color: #fff;
    box-sizing: border-box;
}
.sup_point img {
  width: 13.5rem;
  margin-right: 3rem;
}
.sup_point p {
    font-size: 2.2rem;
}
.sup_more {
  margin: 0 20px;
}
/* トグルバー */
.sup_more__bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.sup_more__bar::-webkit-details-marker {
  display: none;
}
/* ボタン */
.sup_more__btn {
  display: inline-flex;
  justify-content: space-between;
  color: #fff;
  background: #13a3ff;
  padding: 15px 15px;
  position: relative;
  width: 20rem;
  font-size: 2.0rem;
  box-shadow: 0px 5px 0px #fff000;
  text-decoration: none;
}
.sup_more__btn:hover {
  box-shadow: unset;
  transform: translateY(4px);
}
.sup_more__btn img {
  width: 3rem;
}
.sup_more__body{
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .60s ease,
  cubic-bezier(.25,.8,.25,1), /* ←速さ/カーブ */
  opacity .30s ease; /* ←フェード時間 */
}
.sup_more__body > *{
  overflow: hidden;
}
.sup_more:has(.sup_more__details[open]) .sup_more__body{
  grid-template-rows: 1fr;
  opacity: 1;
}
.sup_more__body > *{
  overflow: hidden;
}
.sup_more__inner{
  padding: 20px;
  margin-top: 5px;
  background-color: #fff;
  font-size: 1.8rem;
}
@supports not selector(:has(*)){
  .sup_more__body{ display: none; }
  .sup_more__details[open] + .sup_more__body{ display: block; }
}
/* 2 company css */
.sup_comlogo {
    height: auto;
    background-color: #fff;
    border: solid 9px #00a1e9;
    margin: 0 2.0rem 3.0rem;
}
.com_logo img {
  width: 15rem;
  margin-bottom: 1.5rem;
}
/*-----------------------------------------
企業ロゴ部分
------------------------------------------*/
#companyBox {
    padding-bottom: 20px;
}
.boxLayoutContainer_v1 {
    max-width: 1440px;
    position: relative;
}
.scroll-infinity__wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
.boxList {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 200%;
    flex-shrink: 0;
}

.scroll-infinity__list--left{
  display:flex; align-items:center; flex-wrap:nowrap;
  animation: infinity-scroll-left 20s linear infinite;
}
@keyframes infinity-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); } /* ←“2周分”前提 */
}

.boxList li {
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
    text-align: center;
}
.boxList li img {
    width: 100%;
    margin-bottom: 5px;
    max-width: 150px;
    min-width: 150px;
}
.boxList p {
  width: 100%;
  height: 45px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6rem;
  color: #494949;
  box-sizing: border-box;
  border-top: solid 1px #cbcbcb;
}
.ps {
    text-align: right;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto 5px 10px;
    max-width: 1200px;
    font-size: 12px;
}


/* 4 support css */
.supcon04 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr)); /* 26remを基準幅に */
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
  align-items: stretch;
}
.supcon04 .supcard {
  width: 26rem;    /* カードの理想幅（これをほぼ維持） */
  height: 100%;
  background: #fff;
  border-radius: .5rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.supcon04 .supcard_head{
  position: relative;
  background: #00A1E9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 1rem;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  display: grid; 
  place-items: center;
  min-height: 5.0rem;
}
.supcon04 .supcard_head::after{
  /* 下向き三角：底辺28px, 高さ22px 相当 */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 15px solid #00A1E9;
}
/* 中央アイコン画像（枠は画像内に含まれる前提） */
.supcon04 .supcard_img{
  width: 17rem;
  max-width: 100%;
  height: auto;
  margin: 2.5rem auto 2rem;
  display: block;
}
.supcard_txtbox {
  background-color: #F1F7FF;
  min-height: 13rem;
  flex: 1 1 auto;
}
.supcon04 .supcard_desc{
  margin: 0 1rem;
  font-size: 1.4rem;
  color: #000;
  text-align: left;
  padding: 1.5rem 0.5rem;;
}


@media screen and (max-width: 768px) {
h3.sup_ttl {
  font-size: 3.0rem;
  line-height: 4.0rem;
}
.support_sub_ttl {
  margin-bottom: 3.5rem
}
.support_sub_ttl img {
  width: 12rem;
  margin-right: 20px;
}
.support_sub_ttl::before {
  top: 85px;
  left: 60px;
  width: 2.5rem;
  height: 2.5rem;
}

.supincon_wrap {
  padding: 20px 0;
}

ul.supcon01 {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.supcon01 li {
    width: 48%;
    text-align: center;
  }

.sup_point {
  margin: 0 20px 30px;
}

.sup_point p {
  font-size: 1.8rem;
}

.sup_more__bar {
      justify-content: center;
}

.sup_more__inner {
  font-size: 1.6rem;
}

}



@media screen and (max-width: 599px) {
/* サポートカード */
  .supcon04 {
    grid-template-columns: 1fr;
    justify-items: center;
    /* padding: 0 10px; */
  }

  .supcon04 .supcard{
    display: grid;
    grid-template-columns: 110px 1fr; 
    grid-template-rows: auto auto;
    grid-template-areas:
      "head head"
      "img  text";
    column-gap: 12px;
    align-items: center;
    max-width: 480px;
    width: 95%;
    height: auto;
  }

  .supcon04 .supcard_head{
    grid-area: head;
    border-radius: .5rem .5rem 0 0;
    padding: .8rem 1.2rem;
    font-size: 1.8rem;
  }
    .supcon04 .supcard_head::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;                  /* 下端に配置 */
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #00A1E9; /* 下向きのまま */
  }

  .supcon04 .supcard_img{
    grid-area: img;
    width: 98px;
    height: auto;
    margin: 12px;
    /* アイコンに黄色リングを付けたい場合だけ↓ */
    /* border-radius: 50%; outline: 4px solid #FFD200; */
  }

  .supcon04 .supcard_txtbox{
    grid-area: text;
    background: #F1F7FF;
    min-height: auto;
    padding: 12px 12px 12px 0;
    border-radius: 0 0 .5rem .5rem;
    text-align: left;
  }

  .supcon04 .supcard_desc{
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 1.0rem 1.0rem;
  }

}



@media screen and (max-width: 440px) {
.support_inner {
  padding: 8.0rem 1.0rem;
}
h3.sup_ttl {
  font-size: 2.6rem;
  line-height: 3.2rem;
}
.support_sub_ttl img {
  width: 8rem;
  margin-right: 10px;
}
.support_sub_ttl::before {
  top: 60px;
  left: 39px;
  width: 2.0rem;
  height: 2.0rem;
}
.support_sub_ttl {
  margin-bottom: 2.5rem;
}
.sup_point {
  flex-direction: column;
  margin: 0 20px 20px;
}
.sup_point img {
  margin: 0 0 1.5rem;
}
.sup_point p {
  font-size: 1.6rem;
}

.ps {
  margin-top: 30px;
}

}

/* 企業ロゴ　レスポンシブ調整 */
@media screen and (max-width: 910px) {

}
@media screen and (max-width: 440px) {
.sup_comlogo {
  border: solid 5px #00a1e9;
  margin: 0 1rem 3.0rem;
}
.scroll-infinity__wrap {
  margin-bottom: 10px;
}
.boxList {
    width: 500%;
  }

.boxList li {
  margin-bottom: 0;
}
}
/* 企業ロゴ　レスポンシブ調整 end */


/* support end */

/* agent */
section.agent {
  margin-bottom: 15rem;
  position: relative;
  z-index: 10;
}
.agent_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8.0rem 2.0rem;
}
ul.agent_box {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 0;
  padding: 0;
}
li.agent_card {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: rgba(241, 247, 255, 0.8);
  padding: 2.5rem 4.5rem 2.5rem 4.5rem;
  border-radius: 2.0rem;
  box-sizing: border-box;
}
.agent_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-right: 4.5rem;
}
.agent_img img {
  width: 25rem;
}
.agent_name {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}
.agent_position {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
}
.agent_sent {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
section.agent {
  margin-bottom: 0rem;
}
}

@media screen and (max-width: 599px) {
li.agent_card {
  flex-direction: column;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
}
}

@media screen and (max-width: 440px) {
.agent_inner {
  padding: 8.0rem 1.0rem;
}
.agent_img {
  margin: 0 auto 15px;
}
.agent_img img {
  width: 18rem;
}
.agent_name {
    font-size: 2.0rem;
    margin-bottom: 1.0rem;
}
.agent_position {
    font-size: 1.8rem;
    margin-bottom: 1.0rem;
}
}
/* agent end */

/* flow */
section.flow {
  margin-bottom: 20rem;
  position: relative;
  z-index: 10;
}
.flow_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
ul.flow_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  row-gap: 2.0rem;
}
li.flow_card {
  display: flex;
  flex-direction: row;
  width: 45%;
  background-color: #F1F7FF;
  border-bottom: solid 4px #5688CC;
  padding: 1.5rem;
}
.step_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-right: 1.5rem;
}
.step_img img {
  width: 10.5rem;
}
.step_ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.step_sent {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
section.flow {
  margin-bottom: 7rem;
}

ul.flow_box {
  flex-direction: column;
}

li.flow_card {
  width: 100%;
  box-sizing: border-box;
}

}

@media screen and (max-width: 440px) {
.flow_inner {
  padding: 80px 10px;
}
ul.flow_box {
  flex-direction: column;
}

li.flow_card {
  flex-direction: column;
}

.step_ttl {
    font-size: 2.0rem;
}

.step_img img {
  width: 8.5rem;
  margin-bottom: 10px;
}

}
/* flow end */

/* qa */
.qa {
  position: relative;
  display: flow-root;     /* float崩れ防止 */
  padding: 8rem 0;
  background: none;       /* 背景は疑似要素に任せる */
}
.qa::before{
  content: "";
  position: absolute;
  inset: 0;               /* top/right/bottom/left = 0; と同じ */
  width: 100vw;           /* ← ビューポート幅いっぱい */
  left: 50%;
  transform: translateX(-50%); /* ← 中央基準でズレ防止 */
  background: #F1F7FF;
  z-index: -1;
}
.qa_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
ul.qa_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  row-gap: 1.5rem;
}
li.question {
  width: 45%;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: solid 1px #d4d1d1;
}
.qa-q, .qa-a {
  position: relative;
  padding-left: 5.5rem;
  line-height: 1.6;
}
.qa-q {
  border-bottom: solid 1px #5688CC;
  padding-bottom: 1.5rem;
}
.qa-a {
  padding-top: 1.5rem;
}
.qa-q::before, .qa-a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4.2rem;
  height: 4.2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* アイコンはSVG推奨（シャープ＆色替え可） */
}
.qa-q::before {
  top: -0.9rem;
  background-image: url("/lp4/img/qa_q.svg");
}
.qa-a::before {
  top: 0.4rem;
  background-image: url("/lp4/img/qa_a.svg");
}

@media screen and (max-width: 768px) {
.qa {
  padding: 4rem 0;
}
ul.qa_box {
  flex-direction: column;
}
li.question {
  width: 100%;
  box-sizing: border-box;
}
}

@media screen and (max-width: 440px) {
.qa_inner {
  padding: 0 1rem;
}
}
/* qa end */


