/* =========================
BN-service-page
========================= */

.service-page{
  background:var(--paper);
}

/* HERO */

.service-hero{
  min-height:640px;
  padding:150px 7vw 100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.service-hero h1{
  margin:20px 0 34px;
  font-size:clamp(44px,5.6vw,88px);
  line-height:1.35;
  letter-spacing:.06em;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.service-hero p:last-child{
  max-width:760px;
  margin:0;
  font-size:15px;
  line-height:2;
  color:#555;
  font-weight:700;
}

/* INTRO */

.service-intro{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:80px;
  align-items:start;
  background:#fbfaf8;
}

.service-intro-copy h2{
  margin:18px 0 0;
  font-size:clamp(34px,4vw,64px);
  line-height:1.5;
  letter-spacing:.05em;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.service-intro-text{
  max-width:680px;
}

.service-intro-text p{
  margin:0 0 28px;
  font-size:15px;
  line-height:2.1;
  color:#555;
  font-weight:700;
}

.service-intro-text p:last-child{
  margin-bottom:0;
}

/* FEATURE */

.service-feature{
  display:grid;
  grid-template-columns:.85fr 1fr;
  gap:70px;
  align-items:center;
  background:#111;
  color:#fff;
}

.service-feature .section-kicker{
  color:rgba(255,255,255,.55);
}

.service-feature-copy h2{
  margin:18px 0 32px;
  font-size:clamp(48px,6vw,96px);
  line-height:1;
  letter-spacing:.05em;
  color:#fff;
}

.service-feature-copy p{
  margin:0;
  max-width:560px;
  font-size:15px;
  line-height:2;
  color:rgba(255,255,255,.75);
  font-weight:700;
}

.service-more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:38px;
  min-width:220px;
  height:58px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  transition:.25s;
}

.service-more:hover{
  transform:translateY(-4px);
}

.service-feature-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
}

/* SERVICE LIST */

.service-list{
  background:#fff;
}

.service-list .section-heading.center{
  text-align:center;
  margin-bottom:56px;
}

.service-list .section-heading h2{
  font-size:clamp(34px,4vw,58px);
}

.service-list .section-heading p{
  margin-top:14px;
  font-size:14px;
  color:#555;
  font-weight:700;
}

.service-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  display:block;
  min-height:270px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 46px rgba(0,0,0,.08);
}

.service-card span{
  display:block;
  margin-bottom:28px;
  color:var(--red);
  font-size:13px;
  font-weight:900;
  letter-spacing:.16em;
}

.service-card h3{
  margin:0 0 18px;
  font-size:26px;
  line-height:1.35;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.service-card p{
  margin:0;
  font-size:14px;
  line-height:2;
  color:#555;
  font-weight:700;
}

/* MESSAGE */

.service-message{
  background:#111;
  color:#fff;
  text-align:center;
}

.service-message .section-kicker{
  color:rgba(255,255,255,.55);
}

.service-message h2{
  margin:20px 0 34px;
  font-size:clamp(38px,5vw,76px);
  line-height:1.5;
  letter-spacing:.06em;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.service-message p{
  margin:0;
  font-size:15px;
  line-height:2;
  color:rgba(255,255,255,.75);
}

.service-contact-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:54px;
  min-width:260px;
  height:64px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
  transition:.25s;
}

.service-contact-button:hover{
  transform:translateY(-4px);
}

/* SMARTPHONE */

@media (max-width:960px){

  .service-hero{
    min-height:auto;
    padding:120px 24px 78px;
  }

  .service-hero h1{
    font-size:clamp(38px,10vw,54px);
    line-height:1.42;
  }

  .service-hero p:last-child{
    font-size:14px;
    line-height:1.95;
  }

  .service-intro,
  .service-feature{
    grid-template-columns:1fr;
    gap:42px;
  }

  .service-intro-copy h2{
    font-size:clamp(30px,9vw,44px);
  }

  .service-feature{
    padding-top:84px;
    padding-bottom:84px;
  }

.service-feature-copy h2{
  font-size:clamp(32px,8vw,48px);
  line-height:1.05;
  letter-spacing:.02em;
}

  .service-card-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
    padding:30px 26px;
  }

  .service-card h3{
    font-size:24px;
  }

  .service-message h2{
    font-size:clamp(32px,9vw,46px);
  }

}