/* =========================
BN-thinking-page
========================= */

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

/* HERO */

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

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

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

/* INTRO */

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

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

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

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

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

/* ARTICLE */

.thinking-list{
  background:#fff;
}

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

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

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

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

.thinking-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition:.3s;
  box-shadow:0 18px 46px rgba(0,0,0,.04);
}

.thinking-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,.08);
}

.thinking-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.thinking-card div{
  padding:26px 28px 30px;
}

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

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

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

.thinking-card time{
  display:block;
  color:#999;
  font-size:12px;
  letter-spacing:.08em;
}

/* COMING SOON */

.thinking-coming{
  background:#fbfaf8;
  text-align:center;
}

.thinking-coming h2{
  margin:20px 0 34px;
  font-size:clamp(40px,5vw,82px);
  line-height:1.45;
  letter-spacing:.06em;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

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

/* MESSAGE */

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

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

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

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

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

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

/* SMARTPHONE */

@media (max-width:960px){

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

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

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

  .thinking-intro{
    grid-template-columns:1fr;
    gap:42px;
  }

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

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

  .thinking-card img{
    height:210px;
  }

  .thinking-card div{
    padding:24px;
  }

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

  .thinking-coming h2{
    font-size:clamp(34px,10vw,48px);
  }

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

}