/* =========================
BN-story-page
========================= */

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

/* HERO */

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

.story-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;
}

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

/* ORIGIN */

.story-origin{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
  align-items:center;
  background:#111;
  color:#fff;
}

.story-origin-year{
  font-size:clamp(86px,11vw,180px);
  line-height:1;
  font-weight:900;
  letter-spacing:.04em;
  color:rgba(255,255,255,.16);
}

.story-origin-copy .section-kicker{
  color:rgba(255,255,255,.55);
}

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

.story-origin-copy p{
  margin:0;
  max-width:680px;
  font-size:15px;
  line-height:2.1;
  color:rgba(255,255,255,.78);
  font-weight:700;
}

/* FLOW */

.story-flow{
  background:#fbfaf8;
}

.story-flow .section-heading.center{
  text-align:center;
  margin-bottom:64px;
}

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

.story-flow-list{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:18px;
}

.story-flow-list article{
  display:grid;
  grid-template-columns:90px .8fr 1.2fr;
  gap:28px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:22px 34px;
  box-shadow:0 14px 38px rgba(0,0,0,.035);
}

.story-flow-list span{
  color:var(--red);
  font-size:13px;
  font-weight:900;
  letter-spacing:.16em;
}

.story-flow-list h3{
  margin:0;
  font-size:22px;
  line-height:1.4;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.story-flow-list p{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#555;
  font-weight:700;
}

/* NOW */

.story-now{
  background:#fff;
  text-align:center;
}

.story-now h2{
  margin:20px 0 34px;
  font-size:clamp(48px,6vw,96px);
  line-height:1.35;
  letter-spacing:.08em;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.story-now p{
  max-width:760px;
  margin:0 auto;
  font-size:15px;
  line-height:2.2;
  color:#555;
  font-weight:700;
}

/* MESSAGE */

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

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

.story-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;
}

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

.story-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;
}

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

/* SMARTPHONE */

@media (max-width:960px){

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

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

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

  .story-origin{
    grid-template-columns:1fr;
    gap:34px;
    padding-top:84px;
    padding-bottom:84px;
  }

  .story-origin-year{
    font-size:clamp(76px,24vw,120px);
  }

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

  .story-flow .section-heading.center{
    margin-bottom:42px;
  }

  .story-flow-list article{
    grid-template-columns:1fr;
    gap:10px;
    border-radius:18px;
    padding:28px 26px;
  }

  .story-flow-list h3{
    font-size:24px;
  }

  .story-now h2{
    font-size:clamp(42px,12vw,62px);
  }

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

}