/* =========================================================
   CLEANED CSS
   - Duplicate selector definitions merged
   - Existing visual design preserved
========================================================= */

:root{
  --red:#e83421;
  --red-dark:#b91c1c;
  --navy:#101828;
  --navy-soft:#1f2937;
  --yellow:#ffd233;
  --green:#179211;
  --green-dark:#0f7a2d;
  --text:#101828;
  --muted:#5f6b7a;
  --line:#d9dee7;
  --soft:#f4f6f8;
  --cream:#fff7e8;
  --shadow:0 6px 16px rgba(16,24,40,.12);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,
    BlinkMacSystemFont,
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.75;
}

a{
  color:inherit;
  text-decoration:none;
}

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

.container{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
}

section{
  padding:82px 0;
}

.soft{
  background:var(--soft);
}

.cream{
  background:var(--cream);
}

.pc-only{
  display:block;
}

.sp-only{
  display:none;
}

.marker{
  display:inline;
  background:linear-gradient(
    transparent 58%,
    #fff35c 58%
  );
  font-weight:900;
}

.header{
  position:sticky;
  top:0;
  z-index:500;
  background:#fff;
  border-bottom:4px solid var(--red);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.header-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:inline-flex;
  align-items:center;
  flex:none;
}

.logo img{
  display:block;
  width:auto;
  height:58px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:14px;
  font-weight:900;
  color:var(--navy);
}

.nav a:not(.cta-mini):hover{
  color:var(--red);
}

.hamburger{
  display:none;
}

.drawer-overlay{
  display:none;
}

@media (max-width:980px){

.header-inner{
  height:72px;
}

.logo img{
  height:48px;
}

.hamburger{
  position:relative;
  z-index:540;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:46px;
  height:46px;
  padding:0;
  background:#fff;
  border:2px solid #eaecf0;
  border-radius:10px;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(16,24,40,.08);
}

.hamburger span{
  display:block;
  width:24px;
  height:2px;
  border-radius:999px;
  background:#101828;
  transition:transform .25s ease,
      opacity .25s ease;
}

.hamburger.is-active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2){
  opacity:0;
}

.hamburger.is-active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.nav{
  position:fixed;
  top:0;
  right:0;
  z-index:530;
  width:min(84vw,360px);
  height:100dvh;
  padding:104px 28px 40px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  background:#fff;
  color:#101828;
  box-shadow:-16px 0 36px rgba(16,24,40,.18);
  transform:translateX(110%);
  visibility:hidden;
  pointer-events:none;
  transition:transform .32s ease,
      visibility .32s ease;
}

.nav.is-open{
  transform:translateX(0);
  visibility:visible;
  pointer-events:auto;
}

.nav a{
  width:100%;
  padding:16px 0;
  border-bottom:1px solid #eaecf0;
  font-size:16px;
}

.nav .cta-mini{
  width:100%;
  margin-top:18px;
  padding:16px 18px;
  border-bottom:none;
  justify-content:center;
}

.drawer-overlay{
  position:fixed;
  inset:0;
  z-index:450;
  display:block;
  background:rgba(16,24,40,.36);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease,
      visibility .28s ease;
}

.drawer-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

body.drawer-open{
  overflow:hidden;
}

}

@media (max-width:640px){

.logo img{
  height:44px;
}

.hamburger{
  width:44px;
  height:44px;
}

.hero-last-line{
  display:inline-block;
  white-space:nowrap;
}

}

.section-head{
  max-width:900px;
  margin:0 auto 42px;
  text-align:center;
}

.label{
  display:inline-flex;
  padding:6px 18px;
  border-radius:4px;
  background:var(--navy);
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:14px;
}

.section-head h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(32px,4vw,50px);
  line-height:1.24;
  letter-spacing:-.05em;
  font-weight:900;
}

.section-head h2 span{
  color:var(--red);
}

.section-head p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
  font-weight:800;
}

.main-cta::before,
.nav .cta-mini::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:80%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.38),
    transparent
  );
  animation:buttonShine 3.4s ease-in-out infinite;
}

.main-cta:hover,
.nav .cta-mini:hover{
  transform:translateY(3px);
  filter:brightness(1.04);
}

.main-cta::after{
  content:"▶";
  position:relative;
  z-index:1;
  margin-left:10px;
  font-size:1em;
}

.nav .cta-mini:hover{
  box-shadow:0 3px 0 var(--green-dark),
    0 6px 14px rgba(23,146,17,.2);
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:740px;
  padding:0;
  background:#111;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:#111;
}

.hero-bg img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  opacity:0;
  animation:none;
  transition:opacity 1.4s ease;
  transform:scale(1.08);
}

.hero-bg img.is-active{
  opacity:1;
  z-index:2;
}

.hero-bg .sp-bg{
  display:none;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
      90deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,.04) 38%,
      rgba(255,255,255,.08) 100%
    );
}

.hero-white-shape{
  position:absolute;
  z-index:1;
  top:0;
  right:-2vw;
  width:61vw;
  min-width:680px;
  height:100%;
  background:rgba(255,255,255,.94);
  clip-path:polygon(10% 0,100% 0,100% 100%,0 100%);
  box-shadow:-12px 0 28px rgba(0,0,0,.08);
  animation:heroDiagonalMove 7.4s ease-in-out infinite;
  transform-origin:center center;
}

.hero-grid{
  position:relative;
  z-index:5;
  min-height:740px;
  width:100%;
  max-width:none;
  margin:0;
}

.hero-content{
  position:absolute;
  top:50%;
  right:max(-90px,-5vw);
  width:min(920px,58vw);
  transform:translateY(-50%);
  max-width:1060px;
  padding-right:clamp(18px,2.4vw,44px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  animation:heroTextIn .75s ease-out both;
}

.hero h1{
  margin:0 0 20px;
  color:var(--red);
  font-size:clamp(52px,4.6vw,76px);
  line-height:1.26;
  letter-spacing:-.06em;
  font-weight:900;
  text-shadow:2px 2px 0 #fff,
    0 3px 0 rgba(255,255,255,.65);
}

.lead-strong{
  margin:0 0 26px;
  padding:10px 16px;
  color:#fff;
  background:var(--navy);
  font-size:2em;
  line-height:1.5;
  font-weight:900;
  box-shadow:6px 6px 0 rgba(16,24,40,.14);
}

.accent-five{
  position:relative;
  display:inline-block;
  padding:0 .08em;
  color:#111;
  font-size:1.28em;
  font-weight:900;
  line-height:1.1;
  z-index:1;
  animation:fivePop 2.4s ease-in-out infinite;
}

.accent-five::after{
  content:"";
  position:absolute;
  left:-16px;
  right:-16px;
  bottom:-8px;
  height:72px;
  background:url("./img/check.png") center center / contain no-repeat;
  z-index:-1;
  animation:checkFloat 3.2s ease-in-out infinite;
}

.hero-sub-copy{
  margin:0 0 22px;
  color:#344054;
  font-size:18px;
  line-height:1.85;
  font-weight:800;
}

.hero-trust-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 28px;
}

.hero-trust-points span{
  display:inline-flex;
  align-items:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d0d5dd;
  color:#101828;
  font-size:1.5rem;
  line-height:1;
  font-weight:900;
  box-shadow:0 4px 12px rgba(16,24,40,.06);
}

.hero-trust-points span::before{
  content:"";
  width:8px;
  height:8px;
  margin-right:8px;
  border-radius:50%;
  background:var(--red);
}

@keyframes heroTextIn{
  0%{
    opacity:0;
    transform:translateY(-46%) translateX(24px);
  }

  100%{
    opacity:1;
    transform:translateY(-50%) translateX(0);
  }
}

@keyframes heroCardUp{
  0%{
    opacity:0;
    transform:translateY(24px);
  }

  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:980px){

.hero{
  min-height:auto;
  padding:0 0 56px;
  background:#fff;
}

.hero-bg{
  position:relative;
  inset:auto;
  height:360px;
  z-index:1;
}

.hero-bg .pc-bg{
  display:none;
}

.hero-bg .sp-bg{
  display:block;
}

.hero-bg img{
  object-position:center top;
}

.hero-overlay{
  background:linear-gradient(
        180deg,
        rgba(0,0,0,.08) 0%,
        rgba(0,0,0,.02) 54%,
        rgba(255,255,255,.78) 100%
      );
}

.hero-white-shape{
  display:none;
}

.hero-grid{
  min-height:auto;
  width:min(1120px,calc(100% - 28px));
  max-width:1120px;
  margin:-72px auto 0;
  padding:0;
}

.hero-content{
  position:relative;
  z-index:5;
  top:auto;
  right:auto;
  left:auto;
  width:100%;
  max-width:720px;
  margin:0 auto;
  padding:34px 24px 30px;
  transform:none;
  text-align:center;
  align-items:center;
  background:rgba(255,255,255,.97);
  border:1px solid #eaecf0;
  border-radius:20px;
  box-shadow:0 16px 34px rgba(16,24,40,.13);
  animation:heroCardUp .72s ease-out both;
}

.hero h1{
  width:100%;
  text-align:center;
}

.lead-strong{
  font-size:clamp(17px,3.8vw,22px);
  text-align:center;
}

.hero-sub-copy{
  font-size:15px;
  text-align:center;
}

.hero-trust-points{
  justify-content:center;
}

}

@media (max-width:640px){

.hero{
  padding:0 0 44px;
}

.hero-bg{
  height:285px;
}

.hero-grid{
  width:min(100% - 24px,1120px);
  margin-top:-92px;
}

.hero-content{
  padding:24px 10px 22px;
  border-radius:18px;
}

.lead-strong{
  margin:0 0 18px;
  padding:9px 11px;
  font-size:15px;
  line-height:1.7;
}

.hero h1{
  margin:0 0 14px;
  font-size:35px;
  line-height:1.32;
  letter-spacing:-.08em;
}

.accent-five{
  font-size:1.55em;
  line-height:1;
}

.accent-five::after{
  left:-10px;
  right:-10px;
  bottom:-4px;
  height:48px;
}

.hero-sub-copy{
  margin-bottom:16px;
  font-size:13px;
  line-height:1.85;
}

.hero-sub-copy br{
  display:none;
}

.hero-trust-points{
  gap:6px;
}

.hero-trust-points span{
  width:auto;
  padding:0 6px;
  font-size:.9rem;
  white-space:nowrap;
  letter-spacing:-0.04em;
}

}

/* =========================================================
   CAMPAIGN BANNER
========================================================= */

.campaign-banner{
  padding:0;
  background:#fff;
}

.campaign-banner picture,
.campaign-banner img{
  display:block;
}

.campaign-banner img{
  width:100%;
  height:auto;
}


.hero-support{
  position:relative;
  padding:46px 0;
  background:#fff7e8;
  border-top:6px solid var(--red);
  border-bottom:1px solid #ead9bd;
}

.visa-news{
  margin-top:28px;
  text-align:center;
}

.visa-news-top{
  margin:0 0 14px;
  color:#111;
  font-size:22px;
  font-weight:900;
  line-height:1.8;
}

.visa-news-top span{
  display:inline-block;
  padding:0 8px;
  background:var(--yellow);
  color:var(--red);
  font-weight:900;
}

.visa-news h3{
  margin:0 auto 26px;
  max-width:980px;
  color:#111827;
  font-size:clamp(32px,4vw,48px);
  line-height:1.42;
  letter-spacing:-.045em;
  font-weight:900;
}

.visa-news h3 strong{
  color:var(--red);
}

.support-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.support-point{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:22px 20px;
  background:#fff;
  border:2px solid #d0d5dd;
  border-radius:8px;
  box-shadow:5px 5px 0 rgba(16,24,40,.12);
  color:#182033;
  font-size:21px;
  font-weight:900;
  line-height:1.55;
}

.support-point::before{
  content:"✓";
  flex:none;
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  margin-top:2px;
  border-radius:4px;
  background:var(--red);
  color:#fff;
  font-size:16px;
  font-weight:900;
}

.worry{
  position:relative;
  overflow:visible;
  z-index:2;
  padding:92px 0 104px;
  background:#4b5563;
}

.worry::before{
  display:none;
}

.worry::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-70px;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:320px solid transparent;
  border-right:320px solid transparent;
  border-top:70px solid #4b5563;
  z-index:5;
}

.worry-inner{
  position:relative;
  z-index:1;
}

.worry-head-row{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:28px;
  align-items:center;
  margin-bottom:42px;
}

.worry-heading h2{
  margin:0;
  color:#fff;
  font-size:clamp(24px,2.8vw,40px);
  line-height:1.55;
  font-weight:900;
}

.worry-heading p{
  display:inline-block;
  position:relative;
  margin:18px 0 0;
  color:#fff;
  font-size:clamp(32px,4vw,54px);
  line-height:1.35;
  letter-spacing:-.05em;
  font-weight:900;
}

.worry-heading p::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:8px;
  background:linear-gradient(
      to bottom,
      var(--red) 0 3px,
      var(--yellow) 3px 8px
    );
}

.worry-main-image img{
  max-width:320px;
  margin:0 auto;
}

.worry-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.worry-item{
  min-height:300px;
  padding:22px 16px 18px;
  background:#fff;
  border:3px solid var(--red);
  border-radius:8px;
  text-align:center;
  box-shadow:5px 5px 0 rgba(232,52,33,.14);
}

.worry-icon{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  margin:0 auto 14px;
  border-radius:4px;
  background:var(--red);
  color:#fff;
  font-size:26px;
  font-weight:900;
}

.worry-item p{
  margin:0;
  color:#111827;
  font-size:18px;
  line-height:1.6;
  letter-spacing:-.04em;
  font-weight:900;
}

.worry-item img{
  max-width:140px;
  margin:18px auto 0;
}

.solution-cta{
  position:relative;
  overflow:hidden;
  padding:140px 0 100px;
  background:url("./img/fv_saiyou_bg.jpg") center center / cover no-repeat;
}

.solution-box{
  position:relative;
  overflow:hidden;
  padding:56px 56px;
  background:#fff;
  border:3px solid #d0d5dd;
  border-radius:8px;
  box-shadow:7px 7px 0 rgba(16,24,40,.12);
}

.solution-box::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:18px;
  width:18px;
  height:18px;
  border-right:4px solid var(--red);
  border-bottom:4px solid var(--red);
  transform:translateX(-50%) rotate(45deg);
  opacity:.8;
  animation:scrollCue 1.6s ease-in-out infinite;
}

.solution-copy{
  position:relative;
  z-index:2;
  max-width:none;
}

.solution-label{
  display:inline-flex;
  margin:0 0 18px;
  padding:8px 18px;
  background:var(--yellow);
  color:#111;
  border-radius:4px;
  font-size:1em;
  font-weight:900;
}

.solution-copy h2{
  margin:0;
  color:#111827;
  font-size:clamp(44px,5vw,68px);
  line-height:1.35;
  letter-spacing:-.05em;
  font-weight:900;
}

.solution-copy2{
  color:var(--red);
 }

.solution-copy1{
  display:inline-block;
  color:var(--red);
  animation:whiteGlow 2s ease-in-out infinite;
}

.solution-text{
  margin:22px 0 0;
  color:#4b5563;
  font-size:17px;
  line-height:1.9;
  font-weight:800;
}

.solution-visual{
  position:absolute;
  right:-20px;
  bottom:-10px;
  width:700px;
  z-index:1;
  opacity:.35;
  animation:solutionFloat 5.5s ease-in-out infinite;
}

.solution-visual img{
  width:100%;
}

.solution-button{
  margin-top:34px;
  text-align:center;
}

/* =========================================================
   WHY
========================================================= */

.why{
  position:relative;
  overflow:hidden;
  padding:104px 0 112px;
  background:#fff;
}

.why::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,#fff 0%,#f4f6f8 100%);
  pointer-events:none;
}

.why .container{
  position:relative;
  z-index:1;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.why-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  background:#fff;
  border:1px solid #eaecf0;
  border-radius:10px;
  box-shadow:0 10px 24px rgba(16,24,40,.08);
}

.why-num{
  display:flex;
  align-items:center;
  min-height:46px;
  margin:0;
  padding:0 22px;
  background:var(--red);
  color:#fff;
  font-size:18px;
  line-height:1.35;
  font-weight:900;
}

.why-card h3{
  min-height:96px;

  margin:26px 24px 16px;

  color:#111827;

  font-size:24px;
  line-height:1.55;
  letter-spacing:-.04em;

  font-weight:900;
}

.why-card p{
  min-height:128px;

  margin:0 24px 22px;

  color:#475569;

  font-size:17px;
  line-height:1.9;

  font-weight:700;
}

.why-image{
  width:100%;
  margin-top:auto;
  overflow:hidden;
  background:#fff;
}

.why-image img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center center;
}

.why-card:nth-child(2) .why-image img{
  object-fit:contain;
  object-position:center center;
}

.achievements{
  position:relative;
  overflow:hidden;
  background:#f4f6f8;
}

.achievement-numbers{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:820px;
  margin:0 auto 44px;
}

.achievement-number-card p{
  display:inline-block;
  margin:0 0 10px;
  padding:5px 12px;
  background:var(--navy);
  color:#fff;
  font-size:17px;
  font-weight:900;
}

.achievement-number-card strong{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
  color:var(--red);
  font-size:clamp(62px,7vw,94px);
  line-height:1;
  letter-spacing:-.06em;
  font-weight:900;
}

.achievement-number-card small{
  margin-bottom:9px;
  color:var(--red);
  font-size:28px;
  letter-spacing:0;
}

.achievement-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.achievement-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.achievement-body{
  padding:20px 18px 22px;
}

.achievement-count{
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-bottom:14px;
  padding:10px 14px 9px;
  background:#fff0ed;
  color:var(--red);
  border:1px solid rgba(232,52,33,.28);
  border-radius:4px;
  font-size:13px;
  line-height:1;
  font-weight:900;
}

.achievement-count strong{
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
}

.achievement-body h3{
  margin:0 0 8px;
  color:#111827;
  font-size:20px;
  line-height:1.45;
  letter-spacing:-.04em;
  font-weight:900;
}

.achievement-body p{
  margin:0 0 14px;
  color:#4b5563;
  font-size:14px;
  line-height:1.75;
  font-weight:800;
}

.achievement-body span{
  display:inline-flex;
  padding:6px 12px;
  background:#eef7e9;
  color:var(--green-dark);
  border-radius:4px;
  font-size:13px;
  font-weight:900;
}

.achievement-logo-marquee{
  overflow:hidden;
  margin-top:44px;
  padding:24px 0;
  background:#fff;
  border-top:3px solid #d0d5dd;
  border-bottom:3px solid #d0d5dd;
}

.achievement-logo-track{
  display:flex;
  align-items:center;
  gap:56px;
  width:max-content;
  animation:achievementLogoScroll 75s linear infinite;
}

.achievement-logo-track img{
  flex:none;
  width:auto;
  height:72px;
  object-fit:contain;
}

.flow-red{
  color:var(--red) !important;
  font-weight:900 !important;
}

.support-duty{
  position:relative;
  overflow:hidden;
  padding:96px 0 104px;
  background:#f4f6f8;
}

.support-duty .container{
  width:min(1400px,calc(100% - 40px));
}

.support-duty .section-head{
  max-width:none;
  margin:0 auto 54px;
  text-align:center;
}

.support-duty .section-head h2{
  white-space:nowrap;
}

.support-duty .section-head h2 span{
  color:var(--red);
}

.support-duty-box{
  display:grid;
  grid-template-columns:minmax(0,620px) 460px;
  gap:18px;
  align-items:center;
  justify-content:center;
  margin-top:48px;
}

.support-note{
  position:relative;
  max-width:620px;
  margin-left:auto;
  padding:42px 42px 34px 82px;
  background:url("./img/holes.png") left top repeat-y,
    repeating-linear-gradient(
      to bottom,
      #ffffff 0px,
      #ffffff 42px,
      #d9e8ff 43px
    );
  background-size:58px auto,
    auto;
  border:2px solid #d6dce5;
  border-radius:10px;
  box-shadow:0 10px 24px rgba(16,24,40,.08);
}

.support-note::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:62px;
  width:2px;
  background:#ffb1b1;
}

.support-note-image{
  margin:0 0 28px;
}

.support-note-image img{
  display:block;
  width:100%;
  max-width:520px;
  height:auto;
  border-radius:8px;
}

.support-note-watermark{
  position:absolute;
  top:38px;
  right:36px;
  color:rgba(16,24,40,.22);
  font-size:48px;
  line-height:1;
  letter-spacing:-.08em;
  font-weight:900;
  transform:rotate(-10deg);
  pointer-events:none;
}

.support-note-list{
  display:flex;
  flex-direction:column;
  gap:26px;
  margin:0;
  padding:0;
  list-style:none;
}

.support-note-list li{
  position:relative;
  padding-left:42px;
  color:#172033;
  font-size:20px;
  line-height:1.8;
  font-weight:900;
}

.support-note-list li::before{
  content:"✓";
  position:absolute;
  top:2px;
  left:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:6px;
  background:var(--red);
  color:#fff;
  font-size:15px;
  font-weight:900;
}

.support-note-bottom{
  margin-top:34px;
  color:var(--red);
  font-size:3rem;
  line-height:1.35;
  letter-spacing:-.06em;
  font-weight:900;
  text-align:left;
}

.support-note-bottom span{
  background:linear-gradient(
    transparent 58%,
    #ffe16a 58%
  );
}

.support-duty-image img{
  max-width:520px;
  margin:0 auto;
}

.support-duty-image{
  opacity:0;
}

.support-duty-image.is-active{
  animation:supportThrowIn 1.4s cubic-bezier(.18,1,.22,1);
  opacity:1;
}

@keyframes supportThrowIn{

  0%{
    opacity:0;

    transform:
      translateX(260px)
      rotate(28deg)
      scale(.72);
  }

  18%{
    opacity:1;

    transform:
      translateX(-60px)
      rotate(-14deg)
      scale(1.06);
  }

  38%{
    transform:
      translateX(34px)
      rotate(8deg)
      scale(.98);
  }

  56%{
    transform:
      translateX(-18px)
      rotate(-4deg)
      scale(1.02);
  }

  72%{
    transform:
      translateX(10px)
      rotate(2deg);
  }

  86%{
    transform:
      translateX(-4px)
      rotate(-1deg);
  }

  100%{
    opacity:1;

    transform:
      translateX(0)
      rotate(0)
      scale(1);
  }

}

.voice-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.voice{
  position:relative;
  padding:32px;
  border-radius:8px;
  background:#fff;
  border:2px solid var(--line);
  box-shadow:0 5px 14px rgba(16,24,40,.09);
}

.voice strong{
  display:inline-block;
  background:var(--red);
  color:#fff;
  padding:7px 14px;
  border-radius:4px;
  margin-bottom:16px;
  font-weight:900;
}

.voice p{
  margin:0;
  color:#465467;
  font-weight:800;
}

.voice-image{
  margin:-32px -32px 20px;
  overflow:hidden;
  aspect-ratio:16 / 9;
}

.voice-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.voice-section{
  background:#f6f3ed;
}

.voice-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.voice-label{
  display:inline-block;
  padding:8px 14px;
  background:#ee2f20;
  color:#fff;
  font-size:14px;
  font-weight:700;
  border-radius:4px;
  line-height:1;
}

.voice-title strong{
  font-size:18px;
  font-weight:700;
  color:#222;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-q::before{
  content:"Q";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  margin-right:14px;
  background:var(--red);
  color:#fff;
  border-radius:999px;
  font-size:16px;
  line-height:1;
  font-weight:900;
}


@media (max-width:640px){

.faq-list{
  gap:14px;
}

}

.about-jlbc .container{
  position:relative;
  z-index:1;
}

.about-jlbc-main h3{
  margin:0 0 30px;
  color:var(--red);
  font-size:clamp(30px,3.2vw,42px);
  line-height:1.35;
  letter-spacing:-.06em;
  font-weight:900;
  white-space:nowrap;
}

.about-jlbc-main p{
  margin:0 0 22px;
  color:#344054;
  font-size:17px;
  line-height:2;
  letter-spacing:-.01em;
  font-weight:800;
}

.about-jlbc-main p:last-child{
  margin-bottom:0;
}

.about-jlbc-side{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.about-jlbc-number{
  padding:24px 18px;
  background:#fff;
  border:3px solid var(--red);
  border-radius:8px;
  text-align:center;
  box-shadow:5px 5px 0 rgba(232,52,33,.14);
}

.about-jlbc-number span{
  display:block;
  color:var(--red);
  font-size:60px;
  line-height:1;
  letter-spacing:-.06em;
  font-weight:900;
}

.about-jlbc-number small{
  display:block;
  margin-top:10px;
  color:#111827;
  font-size:15px;
  line-height:1.6;
  font-weight:900;
}

.about-jlbc-note{
  margin-top:auto;
  padding:20px;
  background:var(--yellow);
  border-radius:6px;
  color:#111827;
  font-size:15px;
  line-height:1.8;
  font-weight:900;
}

.contact-section{
  padding:92px 0 100px;
  background:url("./img/bg-gray_bg.jpg") center center / cover no-repeat;
  border-top:8px solid var(--red);
  overflow:hidden;
}

.contact-box{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:50px 44px;
  background:#fff;
  border:1px solid #d9dee7;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(16,24,40,.08);
}

.contact-head{
  margin-bottom:40px;
  text-align:center;
}

.contact-head h2{
  margin:0 0 24px;
  color:#111827;
  font-size:28px;
  line-height:1.45;
  letter-spacing:-.04em;
  font-weight:900;
}

.contact-head p{
  margin:0 0 20px;
  color:var(--red);
  font-size:16px;
  line-height:1.8;
  letter-spacing:.04em;
  font-weight:500;
}

.contact-head-strong{
  margin:0 !important;
  color:var(--red) !important;
  font-size:16px !important;
  line-height:1.8 !important;
  font-weight:900 !important;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  align-items:start;
}

.form-row label{
  padding-top:12px;
  color:#111827;
  font-size:16px;
  line-height:1.6;
  font-weight:900;
}

.form-row label span{
  display:inline-flex;
  margin-left:8px;
  padding:3px 8px;
  background:var(--navy);
  color:#fff;
  border-radius:4px;
  font-size:12px;
  line-height:1.4;
  font-weight:900;
}

.form-row input,
.form-row textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #d1d5db;
  border-radius:8px;
  background:#fff;
  color:#111827;
  font:inherit;
  font-size:16px;
  outline:none;
  transition:border-color .2s ease,
    box-shadow .2s ease;
}

.form-row input:focus,
.form-row textarea:focus{
  border-color:var(--red);
  box-shadow:0 0 0 4px rgba(232,52,33,.12);
}

.form-row textarea{
  min-height:180px;
  resize:vertical;
}

.privacy-box{
  max-height:240px;
  overflow-y:auto;
  padding:20px;
  background:#f9fafb;
  border:1px solid #d1d5db;
  border-radius:8px;
  color:#4b5563;
  font-size:13px;
  line-height:1.9;
  font-weight:500;
}

.privacy-box p{
  margin:0 0 18px;
}

.privacy-box p:last-child{
  margin-bottom:0;
}

.privacy-title{
  margin-bottom:18px;
  color:#111827;
  font-size:16px;
  font-weight:700;
}

.privacy-check{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#111827;
  font-size:15px;
  font-weight:700;
}

.privacy-check input{
  width:20px;
  height:20px;
  accent-color:var(--red);
}

.contact-submit-wrap{
  margin-top:10px;
}

.contact-submit{
  width:100%;
  min-height:72px;
  border:none;
  border-radius:8px;
  background:#f36a0c;
  color:#fff;
  font-size:20px;
  line-height:1;
  font-weight:900;
  letter-spacing:.04em;
  cursor:pointer;
  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
  box-shadow:
    0 4px 0 #a84f12,
    0 10px 18px rgba(217,107,31,.22);
}

.contact-submit::after{
  content:"▶";
  margin-left:12px;
  font-size:.9em;
}

.contact-submit:hover{
  background:#d56719;
  transform:translateY(2px);
  box-shadow:
    0 2px 0 #8a3f0b,
    0 6px 14px rgba(191,93,24,.20);
}

.contact-submit::after{
  content:"▶";
  margin-left:12px;
  font-size:.9em;
}

.contact-submit:hover{
  background:#df5708;
  transform:translateY(2px);
  box-shadow:0 2px 0 #c44a0e,
    0 6px 14px rgba(31,41,55,.16);
}

@media (max-width:640px){

.contact-section{
  padding:64px 0 74px;
}

.contact-box{
  padding:36px 18px;
}

.contact-head h2{
  font-size:23px;
}

.contact-head p,
  .contact-head-strong{
  font-size:14px !important;
  text-align:center;
}

.form-row{
  grid-template-columns:1fr;
  gap:8px;
}

.form-row label{
  padding-top:0;
}

.privacy-check{
  align-items:flex-start;
  justify-content:flex-start;
  font-size:14px;
}

.contact-submit{
  min-height:64px;
  font-size:18px;
}

}

.footer{
  padding:24px 0;
  background:var(--navy-soft);
  color:#fff;
}

.footer-company{
  text-align:center;
}

.footer-logo{
  margin-bottom:10px;
  font-size:16px;
  line-height:1.4;
  font-weight:900;
}

.footer-company-title{
  margin-bottom:6px;
  font-size:12px;
  line-height:1.5;
  font-weight:500;
}

.footer-company-name{
  margin-bottom:6px;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
}

.footer-company-address{
  font-size:12px;
  line-height:1.7;
  font-weight:400;
}

@keyframes heroDiagonalMove{
  0%{
    clip-path:polygon(14% 0,100% 0,100% 100%,0 100%);
    transform:translateX(0);
  }

  50%{
    clip-path:polygon(18% 0,100% 0,100% 100%,4% 100%);
    transform:translateX(-10px);
  }

  100%{
    clip-path:polygon(14% 0,100% 0,100% 100%,0 100%);
    transform:translateX(0);
  }
}

@keyframes heroWhiteCircleMove{
  0%{
    transform:translateX(-50%) translateY(0) scale(1);
  }

  50%{
    transform:translateX(-50%) translateY(-8px) scale(1.03);
  }

  100%{
    transform:translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes checkFloat{
  0%{
    transform:translateY(0) rotate(-1deg);
  }

  50%{
    transform:translateY(-4px) rotate(1deg);
  }

  100%{
    transform:translateY(0) rotate(-1deg);
  }
}

@keyframes fivePop{
  0%,100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }
}

@keyframes achievementLogoScroll{
  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }
}

@keyframes solutionFloat{
  0%{
    transform:translateY(0) rotate(0deg);
  }

  50%{
    transform:translateY(-10px) rotate(-1deg);
  }

  100%{
    transform:translateY(0) rotate(0deg);
  }
}

@keyframes whiteGlow{

  0%,100%{
    transform:scale(1);
    text-shadow:
      0 0 0 rgba(255,255,255,0),
      0 0 0 rgba(255,255,255,0);
  }

  50%{
    transform:scale(1.04);
    text-shadow:
      0 0 10px rgba(255,255,255,.95),
      0 0 22px rgba(255,255,255,.85),
      0 0 40px rgba(255,255,255,.65);
  }

}

@keyframes scrollCue{
  0%{
    transform:translateX(-50%) translateY(0) rotate(45deg);
    opacity:.2;
  }

  50%{
    transform:translateX(-50%) translateY(8px) rotate(45deg);
    opacity:1;
  }

  100%{
    transform:translateX(-50%) translateY(0) rotate(45deg);
    opacity:.2;
  }
}

@keyframes buttonShine{
  0%,62%{
    left:-120%;
  }

  100%{
    left:120%;
  }
}

@media (max-width:980px){

.support-points,
  .worry-head-row,
  .solution-box,
  .voice-grid{
  grid-template-columns:1fr;
}

.worry-heading,
  .solution-copy{
  text-align:center;
}

.worry-list{
  grid-template-columns:repeat(2,1fr);
}

.about-jlbc-box{
  grid-template-columns:1fr;
  padding:38px 30px;
}

.about-jlbc-side{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.about-jlbc-badge,
  .about-jlbc-note{
  grid-column:1 / -1;
}

}

@media (max-width:640px){

.achievement-image,
  .voice-image,
  .support-duty-image,
  .solution-visual,
  .worry-item{
  overflow:hidden;
}

.container{
  width:min(100% - 28px,1120px);
}

section{
  padding:64px 0;
}

.pc-only{
  display:none;
}

.sp-only{
  display:block;
}

.header-inner{
  height:68px;
}

.logo{
  font-size:26px;
}

.logo span{
  font-size:11px;
}

.section-head{
  margin-bottom:34px;
}

.section-head h2{
  font-size:30px;
  line-height:1.28;
  letter-spacing:-.04em;
}

.section-head p{
  font-size:14px;
  line-height:1.8;
}

.main-cta{
  width:100%;
  min-width:0;
  font-size:17px;
}

.visa-news{
  margin-top:18px;
}

.visa-news-top{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.7;
  letter-spacing:-.03em;
}

.visa-news-top span{
  padding:2px 6px;
}

.visa-news h3{
  margin:0 auto 22px;
  font-size:20px;
  line-height:1.55;
  letter-spacing:-.03em;
}

.visa-news h3 br{
  display:none;
}

.support-points{
  grid-template-columns:1fr;
}

.support-point{
  font-size:17px;
}

.worry-heading h2{
  font-size:22px;
}

.worry-heading p{
  font-size:26px;
  letter-spacing:-.05em;
}

.worry-main-image img{
  max-width:190px;
}

.worry-list{
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.worry-item{
  min-height:220px;
  padding:16px 10px 14px;
}

.worry-icon{
  width:36px;
  height:36px;
  font-size:20px;
}

.worry-item p{
  font-size:13px;
}

.worry-item img{
  max-width:84px;
}

.worry::after{
  bottom:-41px;
  border-left:120px solid transparent;
  border-right:120px solid transparent;
  border-top:44px solid #4b5563;
}

.solution-cta{
  padding:64px 0 74px;
  background:url("./img/fv_saiyou_bg.jpg") center center / cover no-repeat;
}

.solution-box{
  position:relative;
  overflow:hidden;
  padding:28px 18px;
}

.solution-copy{
  position:relative;
  z-index:2;
  text-align:left;
  max-width:none;
}

.solution-copy h2{
  font-size:28px;
  line-height:1.4;
  letter-spacing:-.05em;
}

.solution-text{
  margin-top:14px;
  font-size:14px;
  line-height:1.75;
}

.solution-visual{
  position:absolute;
  right:-40px;
  bottom:-10px;
  width:280px;
  z-index:1;
  opacity:.14;
}

.solution-visual img{
  width:100%;
}

.voice-grid{
  grid-template-columns:1fr;
}

.about-jlbc-box{
  gap:24px;
  padding:24px 18px;
}

.about-jlbc-main h3{
  margin-bottom:22px;
  font-size:1.3rem;
  line-height:1.35;
  letter-spacing:-.03em;
  white-space:normal;
}

.about-jlbc-main p{
  margin-bottom:18px;
  font-size:14px;
  line-height:1.95;
}

.about-jlbc-side{
  grid-template-columns:1fr;
  gap:12px;
}

.about-jlbc-number{
  padding:18px 14px;
}

.about-jlbc-number span{
  font-size:48px;
}

.about-jlbc-number small{
  font-size:14px;
}

.about-jlbc-note{
  padding:16px;
  font-size:14px;
  line-height:1.75;
}

.achievement-numbers{
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:32px;
}

.achievement-number-card{
  padding:28px 18px;
}

.achievement-number-card strong{
  font-size:58px;
}

.achievement-count strong{
  font-size:20px;
}

.achievement-body span{
  padding:4px 8px;
  font-size:10px;
}

.achievement-logo-marquee{
  margin-top:32px;
  padding:18px 0;
}

.achievement-logo-track{
  gap:34px;
  animation-duration:60s;
}

.achievement-logo-track img{
  height:52px;
}

.footer{
  padding:20px 0;
}

.footer-logo{
  font-size:14px;
}

.footer-company-title{
  font-size:11px;
}

.footer-company-name{
  font-size:12px;
}

.footer-company-address{
  font-size:10px;
  line-height:1.7;
}

}

.support-note-label{
  display:inline-block;
  margin:0 0 20px;
  padding:6px 14px;
  background:#ffd233;
  color:#111827;
  border-radius:4px;
  font-size:16px;
  line-height:1.5;
  font-weight:900;
}

@media (max-width:980px){

.support-duty-box{
  grid-template-columns:1fr;
  gap:34px;
}

.support-duty-image{
  order:-1;
  text-align:center;
}

.support-duty-image img{
  max-width:280px;
}

.support-note{
  max-width:none;
  margin-left:0;
}

}

@media (max-width:640px){

.support-duty{
  padding:64px 0 74px;
}

.support-duty .container{
  width:min(100% - 28px,1400px);
}

.support-duty .section-head{
  margin-bottom:34px;
}

.support-duty .section-head h2{
  white-space:normal;
}

.support-duty-box{
  margin-top:36px;
}

.support-note{
  background-size:42px auto,
    auto;
  padding:28px
    20px
    24px
    62px;
}

.support-note::after{
  left:46px;
}

.support-note-watermark{
  top:34px;
  right:18px;
  font-size:28px;
}

.support-note-list{
  gap:18px;
}

.support-note-list li{
  padding-left:34px;
  font-size:15px;
  line-height:1.8;
}

.support-note-list li::before{
  width:24px;
  height:24px;
  font-size:12px;
}

.support-note-bottom{
  margin-top:28px;
  font-size:2rem;
  line-height:1.45;
}

.faq-item{
  padding:24px 0;
}

}

.main-cta,
.nav .cta-mini{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:10px;
  color:#fff;
  font-weight:900;
  transition:transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}

.main-cta{
  min-width:360px;
  min-height:64px;
  padding:0 34px;
  background:#16a34a;
  font-size:21px;
  letter-spacing:.02em;
  box-shadow:0 6px 0 #0f7a2d,
    0 12px 22px rgba(22,163,74,.22);
}

.main-cta:hover{
  box-shadow:0 3px 0 #0f7a2d,
    0 8px 16px rgba(22,163,74,.2);
}

.nav .cta-mini{
  padding:10px 22px;
  background:var(--green);
  font-size:14px;
  box-shadow:0 6px 0 var(--green-dark),
    0 10px 18px rgba(23,146,17,.22);
  border-radius:8px;
}

.floating-cta{
  position:fixed;
  left:auto;
  bottom:18px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 18px;
  border-radius:10px;
  background:green;
  color:#fff;
  font-weight:900;
  border:none;
  box-shadow:0 10px 24px rgba(135, 232, 33, 0.28);
  right:18px;
}

.floating-cta::before{
  content:"";
  font-size:18px;
}

.achievement-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  background:#fff;
  border:1px solid #eaecf0;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(16,24,40,.08);
}

.achievement-image{
  overflow:hidden;
  aspect-ratio:16 / 10;
  background:#ddd;
}

.achievement-number-card{
  background:#fff;
  border:3px solid var(--red);
  border-radius:16px;
  padding:34px 28px;
  text-align:center;
  box-shadow:6px 6px 0 rgba(232,52,33,.14);
}

.faq-item{
  overflow:hidden;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  transition:.3s;
  padding:0;
  border-bottom:1px solid #d9dee7;
}

.faq-item:first-child{
  border-top:1px solid #d9dee7;
}

.faq-q{
  position:relative;
  width:100%;
  padding:28px 58px 28px 56px;
  background:#fff;
  border:none;
  color:#111827;
  font-size:20px;
  line-height:1.7;
  letter-spacing:-.02em;
  font-weight:900;
  text-align:left;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
}

.faq-q::after{
  content:"+";
  position:absolute;
  top:50%;
  right:18px;
  transform:translateY(-50%);
  color:#101828;
  font-size:30px;
  line-height:1;
  font-weight:900;
}

.faq-item.is-open .faq-q::after{
  content:"−";
}

.faq-a{
  display:none;
  padding:0 58px 28px 56px;
  color:#475569;
  font-size:16px;
  line-height:2;
  font-weight:500;
  margin:0;
  border-top:none;
}

.faq-item.is-open .faq-a{
  display:block;
}

.faq-a::before{
  content:"A";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  margin-right:14px;
  margin-bottom:14px;
  background:#111827;
  color:#fff;
  border-radius:999px;
  font-size:16px;
  line-height:1;
  font-weight:900;
  top:0;
}

@media (max-width:980px){

.why{
  padding:78px 0 84px;
}

.why-grid{
  grid-template-columns:1fr;
  gap:22px;
}

.why-image img{
  height:260px;
}

.achievement-grid{
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

}

@media (max-width:640px){

body{
  padding-bottom:76px;
}

.floating-cta{
  left:12px;
  bottom:10px;
  padding:14px 16px;
  right:12px;
  justify-content:center;
  font-size:15px;
  z-index:200;
}

.why{
  padding:64px 0 72px;
}

.why-card{
  border-radius:8px;
}

.why-num{
  min-height:42px;
  padding:0 14px;
  font-size:14px;
}

.why-card h3{
  margin:20px 16px 12px;
  font-size:18px;
  line-height:1.55;
}

.why-card p{
  margin:0 16px 18px;
  font-size:13px;
  line-height:1.85;
}

.why-image img{
  height:180px;
}

.achievement-grid{
  grid-template-columns:1fr;
  gap:14px;
}

.achievement-card{
  display:grid;
  grid-template-columns:112px 1fr;
  align-items:stretch;
  border-radius:14px;
}

.achievement-image{
  aspect-ratio:auto;
  height:100%;
}

.achievement-body{
  padding:14px 14px 15px;
}

.achievement-count{
  gap:2px;
  margin-bottom:8px;
  padding:7px 10px 6px;
  font-size:10px;
}

.achievement-body h3{
  font-size:16px;
  line-height:1.45;
  margin-bottom:6px;
}

.achievement-body p{
  margin:0 0 10px;
  font-size:12px;
  line-height:1.6;
  margin-bottom:8px;
}

.faq-q{
  padding:22px 44px 22px 40px;
  font-size:18px;
  line-height:1.7;
  padding-left:40px;
}

.faq-q::before{
  width:28px;
  height:28px;
  margin-right:10px;
  font-size:22px;
}

.faq-q::after{
  right:6px;
  font-size:26px;
}

.faq-a{
  padding:0 8px 22px 40px;
  font-size:14px;
  line-height:1.9;
  margin-top:14px;
}

.faq-a::before{
  width:28px;
  height:28px;
  margin-right:10px;
  font-size:22px;
  top:0;
}

}

@media (prefers-reduced-motion:no-preference){

.hero-bg img{
  transform:scale(1.08);
  will-change:opacity, transform;
}

.main-cta,
  .floating-cta{
  animation:ctaBreath 3.2s ease-in-out infinite;
}

.js-reveal,
  .js-reveal-item{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .72s ease,
      transform .72s ease;
  transition-delay:var(--motion-delay,0ms);
}

.js-reveal.is-visible,
  .js-reveal-item.is-visible{
  opacity:1;
  transform:translateY(0);
}

}

@media (prefers-reduced-motion:reduce){

.js-reveal,
  .js-reveal-item{
  opacity:1;
  transform:none;
}

.hero-bg img{
  transform:none !important;
}

}

@keyframes ctaBreath{
  0%,100%{
    filter:brightness(1);
  }

  50%{
    filter:brightness(1.06);
  }
}

.final-contact-buttons{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:520px;
  margin:34px auto 0;
}

.final-contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:72px;
  padding:0 24px;
  border-radius:10px;
  color:#fff;
  font-size:20px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.02em;
  transition:transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}

.final-contact-btn::after{
  content:"▶";
  display:inline-flex;
  align-items:center;
  margin-left:12px;
  font-size:.9em;
  transform:translateY(1px);
}

.final-contact-btn:hover{
  transform:translateY(3px);
  filter:brightness(1.04);
}

.final-contact-btn-red{
  background:var(--navy);
  box-shadow:0 8px 0 var(--red-dark),
    0 14px 24px rgba(232,52,33,.24);
}

.final-contact-btn-red:hover{
  box-shadow:0 4px 0 var(--red-dark),
    0 8px 18px rgba(232,52,33,.22);
}

.final-contact-btn-green{
  background:var(--green);
  box-shadow:0 8px 0 var(--green-dark),
    0 14px 24px rgba(23,146,17,.24);
}

.final-contact-btn-green:hover{
  box-shadow:0 4px 0 var(--green-dark),
    0 8px 18px rgba(23,146,17,.22);
}

@media (max-width:640px){

.final-contact-buttons{
  margin-top:28px;
  gap:12px;
}

.final-contact-btn{
  min-height:64px;
  padding:0 18px;
  font-size:16px;
}

}

.recruit-flow{
  background:#fff;
}

.flow-simple{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:44px 50px;
  max-width:1120px;
  margin:42px auto 0;
  padding:0;
  overflow:visible;
}

.flow-row{
  position:relative;
  z-index:1;
  display:block;
  min-height:178px;
  padding:22px 16px 18px;
  background:#fff;
  border:2px solid var(--line);
  border-radius:8px;
  text-align:center;
  box-shadow:5px 5px 0 rgba(16,24,40,.10);
  opacity:1;
  transform:none;
  overflow:visible;
}

.flow-row:nth-child(-n/**/+3){
  background:#fffaf8;
  border:2px solid #f3ddd7;
}

.flow-row:nth-child(n/**/+4):nth-child(-n/**/+8){
  background:#fffdf8;
  border:2px solid #efe3c8;
}

.flow-row:nth-child(n/**/+9){
  background:#f8fcf8;
  border:2px solid #d9e8dc;
}

.flow-row::after{
  content:"▶";
  position:absolute;
  top:50%;
  right:-43px;
  transform:translateY(-50%);
  display:block;
  width:36px;
  height:36px;
  color:#d4d4d4;
  font-size:34px;
  line-height:36px;
  font-weight:900;
  text-align:center;
  opacity:1;
  pointer-events:none;
}

.flow-row:nth-child(10)::after{
  content:none;
  display:none;
}

.flow-row::before{
  content:none;
  display:none;
}

.flow-left{
  display:block;
  min-width:0;
}

.flow-num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  margin:0 auto 12px;
  border-radius:4px;
  background:var(--red);
  color:#fff;
  font-size:15px;
  font-weight:800;
  flex:none;
}

.flow-row:nth-child(-n/**/+3) .flow-num{
  background:#f08f7b;
}

.flow-row:nth-child(n/**/+4):nth-child(-n/**/+8) .flow-num{
  background:#d9b56a;
}

.flow-row:nth-child(n/**/+9) .flow-num{
  background:#7db08b;
}

.flow-left h3{
  margin:0 0 10px;
  color:#111827;
  font-size:18px;
  line-height:1.45;
  font-weight:800;
}

.flow-row p{
  margin:0;
  color:#475569;
  font-size:15px;
  line-height:1.85;
  font-weight:600;
  text-align:center;
}

.flow-row p.flow-red,
.flow-red{
  color:var(--red) !important;
  font-weight:800 !important;
}

@media (max-width:980px){

.flow-simple{
  grid-template-columns:repeat(2,1fr);
  gap:42px 50px;
  padding:0;
  overflow:visible;
}

.flow-row::after{
  content:"▼";
  display:block;
  right:-43px;
}

.flow-row:nth-child(2n)::after{
  content:none;
  display:none;
}

.flow-row:nth-child(5)::after{
  display:none;
}

.flow-row:nth-child(10)::after{
  content:none;
  display:none;
}

}

@media (max-width:640px){

.flow-simple{
  grid-template-columns:1fr;
  gap:30px;
  margin-top:34px;
  padding:0;
  overflow:visible;
}

.flow-row{
  min-height:auto;
  padding:16px 14px;
}

.flow-row::after{
  content:none;
  display:none;
}

.flow-row:not(:last-child)::before{
  content:"▼";
  position:absolute;
  left:50%;
  bottom:-27px;
  transform:translateX(-50%);
  display:block;
  width:24px;
  height:24px;
  color:#d4d4d4;
  font-size:22px;
  line-height:24px;
  font-weight:900;
  text-align:center;
  pointer-events:none;
}

.flow-num{
  width:34px;
  height:34px;
  font-size:14px;
  margin:0 auto 10px;
}

.flow-left h3{
  font-size:18px;
  margin-bottom:8px;
  line-height:1.45;
}

.flow-row p{
  font-size:14px;
  line-height:1.75;
}

}

.about-jlbc{
  position:relative;
  overflow:hidden;
  padding:90px 0 96px;
  background:#fff;
}

.about-jlbc::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(232,52,33,.05) 0,rgba(232,52,33,0) 36%),
    repeating-linear-gradient(
      -45deg,
      rgba(16,24,40,.025) 0,
      rgba(16,24,40,.025) 1px,
      transparent 1px,
      transparent 9px
    );
  pointer-events:none;
  display:none;
}

.about-jlbc .section-head{
  margin-bottom:36px;
}

.about-jlbc-box{
  display:block;
  grid-template-columns:1fr 340px;
  gap:36px;
  align-items:start;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
}

.about-jlbc-main{
  min-width:0;
  max-width:1040px;
  margin:0 auto;
  padding:44px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:0 10px 28px rgba(16,24,40,.08);
}

.about-jlbc-badge{
  padding:0 34px;
  background:var(--navy);
  color:#fff;
  border-radius:8px;
  text-align:center;
  font-size:24px;
  line-height:1.4;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:340px;
  min-height:64px;
  margin:0 0 28px;
  letter-spacing:.02em;
}

.about-jlbc-lead{
  margin:0 0 42px;
  padding:18px 22px;
  background:#fff7e8;
  border-left:5px solid var(--red);
  color:#111827;
  font-size:18px;
  line-height:2;
  letter-spacing:.01em;
  font-weight:800;
}

.about-jlbc-layout{
  display:block;
}

.about-jlbc-copy{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.about-jlbc-block{
  padding:0 0 30px;
  border-bottom:1px solid #e5e7eb;
}

.about-jlbc-block:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.about-jlbc-block h4{
  margin:0 0 16px;
  color:#111827;
  font-size:22px;
  line-height:1.55;
  letter-spacing:-.02em;
  font-weight:900;
}

.about-jlbc-block p{
  margin:0;
  color:#475569;
  font-size:16px;
  line-height:2;
  letter-spacing:.01em;
  font-weight:500;
  white-space:normal;
}

.about-jlbc-visual{
  margin-top:38px;
  margin-bottom:34px;
  overflow:hidden;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

.about-jlbc-visual img{
  display:block;
  width:100%;
  aspect-ratio:16 / 7;
  object-fit:cover;
}

.about-jlbc-closing{
  margin:38px 0 0;
  padding:20px 22px;
  background:#f8fafc;
  border-left:5px solid var(--red);
  border-radius:0 10px 10px 0;
  color:#111827;
  font-size:16px;
  line-height:2;
  font-weight:800;
  text-align:left;
}

@media (max-width:980px){

.about-jlbc{
  padding:76px 0 84px;
}

.about-jlbc-main{
  padding:34px 28px;
}

.about-jlbc-copy{
  gap:30px;
}

.about-jlbc-visual{
  margin-top:32px;
  margin-bottom:30px;
}

.about-jlbc-visual img{
  aspect-ratio:16 / 8;
}

}

@media (max-width:640px){

.about-jlbc{
  padding:64px 0 72px;
}

.about-jlbc .section-head{
  margin-bottom:28px;
}

.about-jlbc-main{
  padding:24px 18px;
  border-radius:14px;
}

.about-jlbc-badge{
  font-size:17px;
  width:100%;
  min-width:0;
  min-height:56px;
  margin-bottom:18px;
  padding:0 18px;
  line-height:1.5;
}

.about-jlbc-lead{
  margin-bottom:30px;
  padding:16px 16px;
  font-size:15px;
  line-height:1.95;
}

.about-jlbc-lead br{
  display:none;
}

.about-jlbc-copy{
  gap:26px;
}

.about-jlbc-block{
  padding-bottom:24px;
}

.about-jlbc-block h4{
  margin-bottom:12px;
  font-size:18px;
  line-height:1.55;
}

.about-jlbc-block p{
  font-size:14px;
  line-height:1.95;
}

.about-jlbc-visual{
  margin-top:26px;
  margin-bottom:26px;
  border-radius:12px;
}

.about-jlbc-visual img{
  aspect-ratio:16 / 10;
}

.about-jlbc-closing{
  margin-top:28px;
  padding:16px 14px;
  font-size:14px;
  line-height:1.9;
}

}
