:root{
  --bg:#080b10;
  --bg2:#0f151f;
  --panel:#121a26;
  --panel2:rgba(255,255,255,0.055);
  --line:rgba(255,255,255,0.12);
  --text:#f7f4ed;
  --muted:#b9c0ca;
  --gold:#d6b36a;
  --gold2:#f3d894;
  --white:#ffffff;
  --black:#080b10;
  --radius:24px;
  --shadow:0 24px 70px rgba(0,0,0,0.42);
  --max:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Hiragino Sans","Yu Gothic","Meiryo",sans-serif;
  background:
    radial-gradient(circle at top right, rgba(214,179,106,0.16), transparent 28%),
    radial-gradient(circle at 15% 12%, rgba(255,255,255,0.05), transparent 20%),
    linear-gradient(180deg,#080b10 0%,#0e141d 55%,#080b10 100%);
  color:var(--text);
  line-height:1.8;
  letter-spacing:0.03em;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  width:100%;
  display:block;
}

.container{
  width:min(92%,var(--max));
  margin:0 auto;
}

/* header */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,11,16,0.78);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:0.15em;
  white-space:nowrap;
}

.logo span{
  color:var(--gold2);
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav a{
  color:var(--muted);
  font-size:0.94rem;
  transition:0.25s;
}

.nav a:hover{
  color:var(--white);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  transition:0.25s;
  cursor:pointer;
  border:none;
}

.btn-primary{
  color:#111;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow:0 14px 35px rgba(214,179,106,0.22);
}

.btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.btn-outline{
  border:1px solid var(--line);
  color:var(--text);
  background:rgba(255,255,255,0.04);
}

.btn-outline:hover{
  background:rgba(255,255,255,0.09);
}

/* hero */

.hero{
  padding:10px 0 64px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr 0.92fr;
  gap:52px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  color:var(--gold2);
  border:1px solid rgba(214,179,106,0.24);
  background:rgba(214,179,106,0.09);
  padding:7px 14px;
  border-radius:999px;
  font-size:0.82rem;
  letter-spacing:0.16em;
  margin-bottom:20px;
}

.hero h1{
  font-size:clamp(2.35rem,5vw,4.7rem);
  line-height:1.15;
  font-weight:900;
  margin-bottom:24px;
}

.hero h1 strong{
  color:var(--gold2);
  font-weight:900;
}

.hero-text{
  color:var(--muted);
  font-size:1.05rem;
  max-width:680px;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:36px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.stat-card{
  background:rgba(255,255,255,0.045);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow);
}

.stat-card strong{
  display:block;
  color:var(--gold2);
  font-size:1.35rem;
  margin-bottom:4px;
}

.stat-card span{
  color:var(--muted);
  font-size:0.9rem;
}

.hero-image{
  position:relative;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:var(--shadow);
}

.hero-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,0.42));
}

.hero-image img{
  height:560px;
  object-fit:cover;
}

.hero-image-caption{
  position:absolute;
  z-index:2;
  left:26px;
  right:26px;
  bottom:26px;
  padding:22px;
  border-radius:22px;
  background:rgba(8,11,16,0.72);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.12);
}

.hero-image-caption span{
  color:var(--gold2);
  font-size:0.85rem;
  letter-spacing:0.14em;
}

.hero-image-caption p{
  color:var(--muted);
  margin-top:8px;
  font-size:0.94rem;
}

/* common section */

.section{
  padding:92px 0;
}

.section-soft{
  background:linear-gradient(180deg,rgba(255,255,255,0.025),rgba(255,255,255,0.01));
}

.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 48px;
}

.section-head span{
  color:var(--gold2);
  font-size:0.86rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  display:block;
  margin-bottom:12px;
}

.section-head h2{
  font-size:clamp(1.9rem,4vw,3.1rem);
  line-height:1.35;
  margin-bottom:14px;
}

.section-head p{
  color:var(--muted);
}

/* service */

.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,0.065),rgba(255,255,255,0.025));
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:0.25s;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(214,179,106,0.36);
}

.card-image img{
  height:220px;
  object-fit:cover;
}

.card-body{
  padding:26px;
}

.card-num{
  color:var(--gold2);
  font-size:0.82rem;
  letter-spacing:0.14em;
  display:block;
  margin-bottom:8px;
}

.card h3{
  font-size:1.25rem;
  margin-bottom:10px;
}

.card p{
  color:var(--muted);
  font-size:0.96rem;
}

/* strength */

.strength-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.panel{
  background:linear-gradient(180deg,rgba(255,255,255,0.065),rgba(255,255,255,0.025));
  border:1px solid var(--line);
  border-radius:30px;
  padding:36px;
  box-shadow:var(--shadow);
}

.panel h2{
  font-size:2rem;
  margin-bottom:18px;
}

.panel p{
  color:var(--muted);
}

.check-list{
  margin-top:24px;
  display:grid;
  gap:14px;
}

.check-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
}

.check-icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:50%;
  background:rgba(214,179,106,0.14);
  border:1px solid rgba(214,179,106,0.26);
  color:var(--gold2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

.office-image{
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.office-image img{
  height:500px;
  object-fit:cover;
}

/* flow */

.flow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.flow-card{
  background:rgba(255,255,255,0.045);
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow);
}

.flow-card span{
  color:var(--gold2);
  font-size:0.82rem;
  letter-spacing:0.14em;
}

.flow-card h3{
  margin:12px 0 8px;
  font-size:1.14rem;
}

.flow-card p{
  color:var(--muted);
  font-size:0.94rem;
}

/* faq */

.faq-list{
  display:grid;
  gap:14px;
  max-width:900px;
  margin:0 auto;
}

.faq-list details{
  background:rgba(255,255,255,0.045);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 22px;
}

.faq-list summary{
  cursor:pointer;
  color:var(--text);
  font-weight:700;
}

.faq-list .answer{
  color:var(--muted);
  margin-top:12px;
}

/* CTA */

.cta{
  padding:100px 0;
}

.cta-box{
  text-align:center;
  border-radius:34px;
  padding:58px 32px;
  background:
    linear-gradient(135deg,rgba(214,179,106,0.17),rgba(255,255,255,0.035)),
    rgba(255,255,255,0.035);
  border:1px solid rgba(214,179,106,0.25);
  box-shadow:var(--shadow);
}

.cta-box h2{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:14px;
}

.cta-box p{
  color:var(--muted);
  max-width:780px;
  margin:0 auto 26px;
}

/* lower page */

.page-hero{
  padding:72px 0 52px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.page-hero span{
  color:var(--gold2);
  letter-spacing:0.16em;
  font-size:0.85rem;
}

.page-hero h1{
  font-size:clamp(2.1rem,5vw,3.8rem);
  margin-top:10px;
}

.page-hero p{
  color:var(--muted);
  max-width:760px;
  margin-top:16px;
}

.content-box{
  background:rgba(255,255,255,0.045);
  border:1px solid var(--line);
  border-radius:28px;
  padding:36px;
  box-shadow:var(--shadow);
}

.info-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
}

.info-table th,
.info-table td{
  border-bottom:1px solid rgba(255,255,255,0.1);
  padding:18px 16px;
  text-align:left;
  vertical-align:top;
}

.info-table th{
  color:var(--gold2);
  width:230px;
  font-weight:700;
}

.info-table td{
  color:var(--muted);
}

.article-content h2{
  font-size:1.55rem;
  margin:34px 0 12px;
  color:var(--text);
}

.article-content h2:first-child{
  margin-top:0;
}

.article-content p,
.article-content li{
  color:var(--muted);
}

.article-content ul{
  padding-left:1.4em;
  margin-top:10px;
}

.article-content li{
  margin-bottom:8px;
}

/* footer */

.site-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:42px 0;
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
  font-size:0.92rem;
}

.footer-links a:hover{
  color:var(--white);
}

/* floating button */

.fixed-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999;
}

/* responsive */

@media(max-width:980px){
  .nav{
    display:none;
  }

  .hero{
    padding:10px 0 50px;
  }

  .hero-grid,
  .strength-grid{
    grid-template-columns:1fr;
  }

  .hero-image img{
    height:400px;
  }

  .hero-stats,
  .cards-3,
  .flow-grid{
    grid-template-columns:1fr;
  }

  .office-image img{
    height:360px;
  }

  .info-table th,
  .info-table td{
    display:block;
    width:100%;
  }

  .info-table th{
    padding-bottom:6px;
    border-bottom:none;
  }

  .info-table td{
    padding-top:0;
  }

  .fixed-contact{
    right:14px;
    bottom:14px;
  }
}
.hero-image-full{
  width:100%;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.hero-image-full img{
  width:100%;
  height:auto;
  display:block;
}

.hero-under-cta{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}
.btn-line{
  background:#06C755;
  color:#fff;
  box-shadow:0 10px 30px rgba(6,199,85,0.4);
}

.btn-line:hover{
  transform:translateY(-2px);
  filter:brightness(1.1);
}

.fixed-cv{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  max-width:520px;
  display:flex;
  gap:10px;
  z-index:9999;
}

.line-btn,
.tel-btn{
  flex:1;
  text-align:center;
  padding:14px 10px;
  font-weight:bold;
  border-radius:14px;
  box-shadow:0 12px 28px rgba(0,0,0,0.45);
  font-size:14px;
  transition:0.2s;
}

.line-btn{
  background:#06C755;
  color:#fff;
}

.tel-btn{
  background:#111;
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
}

.line-btn:hover,
.tel-btn:hover{
  transform:translateY(-2px);
}
.btn-line{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.hero-under-cta{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}

.cta-button-wrap{
  position:relative;
  display:inline-flex;
}

.cta-mini-label{
  position:absolute;
  top:-13px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(8,11,16,0.92);

  color:#f3d894;
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:0.16em;
  white-space:nowrap;

  padding:5px 13px 6px;
  border-radius:8px;

  border:1px solid rgba(214,179,106,0.52);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.cta-mini-label::before,
.cta-mini-label::after{
  content:"";
  position:absolute;
  top:50%;
  width:18px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(214,179,106,0.75));
}

.cta-mini-label::before{
  right:100%;
  margin-right:7px;
}

.cta-mini-label::after{
  left:100%;
  margin-left:7px;
  transform:scaleX(-1);
}
.btn-line{
  background:#06C755;
  color:#fff;
  box-shadow:0 10px 30px rgba(6,199,85,0.35);
}

.btn-line:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
}

.hero-under-cta .btn{
  min-width:210px;
  height:52px;
}
.card-brand-section{
  margin-top:34px;
  padding:28px 20px;
  border-radius:24px;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);

  text-align:center;
}

.card-brand-title{
  color:#d6b36a;
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:0.12em;
  margin-bottom:20px;
}

.card-brand-list{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.card-brand-logo{
  width:110px;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(6px);

  border:1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);

  transition:0.25s;
}

.card-brand-logo img{
  max-width:75%;
  max-height:60%;
  object-fit:contain;
}

.card-brand-logo:hover{
  transform:translateY(-3px);
  border-color:rgba(214,179,106,0.4);
}
.app-brand-section{
  margin-top:20px;
  padding:24px 20px;
  border-radius:24px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);

  text-align:center;
}

.app-brand-list{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.app-brand-logo{
  width:80px;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(6px);

  border:1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);

  transition:0.25s;
}

.app-brand-logo img{
  max-width:70%;
  max-height:70%;
  object-fit:contain;
}

.app-brand-logo:hover{
  transform:translateY(-3px);
  border-color:rgba(214,179,106,0.4);
}
.carrier-brand-section{
  margin-top:20px;
  padding:24px 20px;
  border-radius:24px;

  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);

  text-align:center;
}

.carrier-brand-list{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.carrier-brand-logo{
  width:120px;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(6px);

  border:1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);

  transition:0.25s;
}

.carrier-brand-logo img{
  max-width:75%;
  max-height:55%;
  object-fit:contain;
}

.carrier-brand-logo:hover{
  transform:translateY(-3px);
  border-color:rgba(214,179,106,0.4);
}
.time-status-box{
  max-width:820px;
  margin:18px auto 22px;
  padding:14px 16px;
  border-radius:18px;

  background:
    linear-gradient(135deg, rgba(214,179,106,0.12), rgba(255,255,255,0.035)),
    rgba(8,11,16,0.82);

  backdrop-filter:blur(12px);
  border:1px solid rgba(214,179,106,0.35);

  box-shadow:
    0 14px 36px rgba(0,0,0,0.42),
    0 0 24px rgba(214,179,106,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.time-status-label{
  color:#f3d894;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.14em;
  text-align:center;
  margin-bottom:10px;
}

.time-status-list{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

.time-status-item{
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  padding:8px 10px;
  border-radius:12px;

  background:rgba(255,255,255,0.055);
  border:1px solid rgba(255,255,255,0.10);
}

.time-status-item span{
  display:inline;
  color:#b4bec9;
  font-size:0.72rem;
  margin-bottom:0;
  white-space:nowrap;
}

.time-status-item strong{
  color:#fff;
  font-size:1.1rem;
  font-weight:700;
  white-space:nowrap;
}

#status-text{
  color:#22c55e;
  font-size:1.5rem;
  font-weight:900;
}

#fast-time,
#transfer-time{
  color:#f3d894;
  font-size:1.5rem;
  font-weight:900;
}

@media(max-width:700px){
  .time-status-box{
    max-width:100%;
    margin:14px auto 18px;
    padding:10px 8px;
    border-radius:16px;
  }

  .time-status-label{
    font-size:0.68rem;
    margin-bottom:8px;
  }

  .time-status-list{
    gap:5px;
    flex-wrap:nowrap;
  }

  .time-status-item{
    padding:7px 4px;
    gap:3px;
    border-radius:10px;
  }

  .time-status-item span{
    font-size:0.58rem;
  }

  .time-status-item strong{
    font-size:0.68rem;
  }

  #status-text,
  #fast-time,
  #transfer-time{
    font-size:1.2rem;
    font-weight:900;
  }
}
.hero-image-full{
  position:relative;
  overflow:hidden;
  border-radius:30px;
}

/* ←これが超重要 */
.hero-image-full::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to bottom,
      rgba(8,11,16,0.0) 40%,
      rgba(8,11,16,0.65) 100%
    );

  pointer-events:none;
}
/* premium hamburger menu */

.hamburger{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(214,179,106,0.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(8,11,16,0.88);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.12);
  cursor:pointer;
  position:relative;
  z-index:1002;
}

.hamburger span{
  display:block;
  width:20px;
  height:2px;
  background:#f3d894;
  border-radius:999px;
  margin:5px auto;
  transition:0.25s;
}

.hamburger.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

@media(max-width:980px){
  .hamburger{
    display:block;
  }

  .nav{
    position:fixed;
    top:78px;
    left:50%;
    transform:translateX(-50%) translateY(-12px);
    width:92%;
    max-width:420px;

    display:flex;
    flex-direction:column;
    gap:0;

    padding:14px;
    border-radius:22px;

    background:
      linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)),
      rgba(8,11,16,0.96);

    backdrop-filter:blur(18px);
    border:1px solid rgba(214,179,106,0.24);

    box-shadow:
      0 26px 70px rgba(0,0,0,0.62),
      inset 0 1px 0 rgba(255,255,255,0.12);

    opacity:0;
    pointer-events:none;
    visibility:hidden;

    transition:0.25s;
    z-index:1001;
  }

  .nav.active{
    opacity:1;
    pointer-events:auto;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
  }

  .nav a{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:14px 14px;
    border-radius:14px;

    color:#f7f4ed;
    font-size:0.95rem;
    font-weight:700;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }

  .nav a:last-child{
    border-bottom:none;
  }

  .nav a::after{
    content:"›";
    color:#d6b36a;
    font-size:1.2rem;
  }

  .nav a:hover{
    background:rgba(214,179,106,0.10);
    color:#f3d894;
  }
}
.fixed-contact{
  display:none !important;
}
.map-wrap{
  margin-top:10px;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.map-section{
  padding-top:0;
}

.map-section .content-box{
  margin-top:-40px;
}

.map-wrap{
  margin-top:10px;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
/* スマホ時：右上の無料相談ボタンを非表示 */
@media(max-width:980px){
  .site-header .btn-primary{
    display:none !important;
  }
}

/* スマホ時：お申し込み状況をコンパクト化 */
@media(max-width:700px){
  .time-status-box{
    padding:10px 8px !important;
    margin:14px auto 18px !important;
  }

  .time-status-list{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:6px !important;
  }

  .time-status-item{
    display:flex !important;
    flex-direction:column !important;
    gap:2px !important;
    padding:8px 4px !important;
  }

  .time-status-item span{
    font-size:0.58rem !important;
    line-height:1.2 !important;
    text-align:center !important;
  }

  .time-status-item strong,
  .time-status-item #status-text,
  .time-status-item #fast-time,
  .time-status-item #transfer-time{
    font-size:1rem !important;
    line-height:1.1 !important;
    font-weight:900 !important;
    text-align:center !important;
  }

  .time-status-item #status-text{
    color:#22c55e !important;
  }

  .time-status-item #fast-time,
  .time-status-item #transfer-time{
    color:#f3d894 !important;
  }
}