/* 神奈川大学 プラウドブルーを変数化 */
:root {
    --jinda-blue: rgb(30, 66, 148);
    --white: #ffffff;
    --glass-white: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 96px; /* 60px(ロゴ) + 16*2(padding) くらい */
    background-color: var(--jinda-blue);
    color: var(--white);
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 左上ロゴ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px 20px;
    z-index: 1000;
}

.site-header .logo img {
    height: 60px;   /* ロゴサイズ調整 */
    width: auto;
}

/* ヒーローエリア */
.hero {
    min-height: calc(100vh - 96px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-title{
  letter-spacing: -0.04em; /* 今より -0.02em くらい強める */
}
.hero-title .kuten{
  display: inline-block;
  transform: translateX(0.15em); /* 0.10〜0.25emで微調整 */
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

/* 英語コピー：少し上に寄せて、存在感を少し上げる */
.tagline {
    font-size: 1.35rem;      /* ← 1.25rem → 少しだけ大きく */
    margin-top: -0.5rem;     /* ← 少し上に寄せる */
    margin-bottom: 1.6rem;   /* ← leadとの間を詰める */
    opacity: 0.95;           /* ← 少しだけ濃く */
}

/* 説明文（lead）：読みやすさを担保 */
.lead {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2.2rem;
}

/* ボタンデザイン */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--white);
    color: var(--jinda-blue);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* 追加：セクション */
.features{
    padding: 40px 0 100px;
}

.section-title{
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    text-align: center;
}

/* 追加：カード */
.feature-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card{
    background: var(--glass-white);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 18px 18px 16px;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card h3{
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-card p{
    font-size: 0.98rem;
    opacity: 0.92;
    line-height: 1.7;
}

.feature-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* レスポンシブ */
@media (max-width: 900px){
    .feature-grid{
        grid-template-columns: 1fr;
    }
    .features{
        padding: 56px 0 80px;
    }
}
/* 追加：カード上部ラベル */
.feature-label{
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    opacity: 0.85;

    padding: 4px 8px;
    margin-bottom: 10px;

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
}

/* コンテンツページ用ヒーロー */
.hero-page {
    height: auto;              /* 100vh をやめる */
    padding-top: 140px;        /* ← ここが効く */
    padding-bottom: 80px;
    justify-content: flex-start;
}
