/* ===== Zoff風ミニマルデザイン ===== */

body{
font-family:"Noto Sans JP",sans-serif;
line-height:1.7;
color:#333;
padding-top:90px; /* navbar分の余白 */
}

/* セクション余白 */

section{
padding:60px 0;
}

/* 見出し */

h1,h2,h3{
font-weight:700;
letter-spacing:.05em;
}

/* カード */

.card:hover{
transform:translateY(-8px);
box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

/* カード全体に影 */
.card, .border.rounded {
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover, .border.rounded:hover {
  transform: translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}


/* simple card */

.border.rounded{
border:1px solid #eee !important;
border-radius:14px !important;
}

/* ボタン */

.btn{
border-radius:40px;
padding:12px 30px;
font-weight:600;
transition:.2s;
}

.btn:hover{
transform:translateY(-2px);
}

/* Hero */
.hero-section h1{
font-size:clamp(2.2rem,4vw,3.2rem);
}

.hero-section{
position:relative;

min-height:90vh;
display:flex;
align-items:center;
padding-bottom: 40px; /* 下余白も減らす */

padding:60px 0;
color:#fff;

background-image:url("/static/images/hero.c470dcaf56c7.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

section.bg-white {
    padding-top: 40px; /* 適度な余白 */
    padding-bottom: 0px; /* 下余白はお好みで */
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:
linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
linear-gradient(120deg, rgba(94,196,255,0.25), rgba(0,0,0,0.55));
}

.hero-content{
position:relative;
z-index:2;
max-width:750px;
margin:auto;
}

/* バッジ */

.badge-orange{
background:#2EA8FF;
color:#fff;
}


.section-title{
font-weight:700;
position:relative;
display:inline-block;
padding-bottom:6px;
}

.section-title:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:3px;
background:#2EA8FF;
}

.bg-brand{
background:#2EA8FF;
color:white;
}

.btn-primary{
background:#2EA8FF;
border:none;
}

.btn-primary:hover{
background:#1C8BE0;
}

.badge-brand{
background:#2EA8FF;
color:#fff;
}

.scroll-indicator{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
color:#fff;
font-size:12px;
letter-spacing:2px;
opacity:.8;
}

.scroll-indicator::after{
content:"";
display:block;
width:1px;
height:30px;
background:#fff;
margin:6px auto 0;
animation:scrollLine 1.8s infinite;
}

@keyframes scrollLine{
0%{opacity:0; transform:translateY(-10px);}
50%{opacity:1;}
100%{opacity:0; transform:translateY(10px);}
}

.hero-features{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.hero-section .btn{
padding:14px 28px;
font-weight:600;
border-radius:8px;

transition:all .25s ease;

box-shadow:0 6px 18px rgba(0,0,0,0.2);
}

.hero-section .btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

.hero-section .btn-primary{
background:#5ec4ff;
border:none;
}


/* ===== Zoff風ミニマルnavbar ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.3s ease;
  z-index: 1000;
}
.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar .navbar-brand {
  font-weight: 700;
  color: #2EA8FF; /* アクセントカラー */
}

.navbar .nav-link,
.navbar .btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.navbar .nav-link:hover,
.navbar .btn:hover {
  transform: translateY(-2px);
}

.lp-navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 0.8rem 0;
    font-family: "Noto Sans JP", sans-serif;
}

.lp-navbar .navbar-brand {
    font-size: 1.25rem;
}

.lp-navbar .nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.25s ease;
}

.lp-navbar .nav-link:hover {
    color: #2EA8FF;
}

.lp-navbar .btn {
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.lp-navbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.lp-navbar .btn-primary {
    background: #2EA8FF;
    color: #fff;
    border: none;
}

.lp-navbar .btn-primary:hover {
    background: #1C8BE0;
}

.lp-badge {
    background: #eef6ff;
    color: #2EA8FF;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-size: 1.1rem; /* 1rem = 親のフォントサイズ, 必要に応じて調整 */
    padding: 0.4em 0.6em; /* バッジの余白も少し広げる */
}

.btn-bookmark {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #222;
  border: 2px solid #222;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.25s ease;
}

/* 下の三角（切り込み） */
.btn-bookmark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #222; /* ← 枠と同じ色 */
}

/* ホバー */
.btn-bookmark:hover {
  background: #222;
  color: #fff;
}

/* ホバー時の三角も色変更 */
.btn-bookmark:hover::after {
  border-top-color: #222;
}

