@charset "UTF-8";

:root {
    --primary-color: #1a2a3a;
    /* 清廉なネイビー */
    --accent-color: #76b82a;
    /* ロゴのグリーン */
    --bg-light: #f8f9fa;
    --text-main: #333;
    /* レスポンシブフォント設定 */
    --fz-h1: clamp(1.8rem, 5vw, 2.8rem);
    --fz-h2: clamp(1.5rem, 4vw, 2rem);
    --fz-body: clamp(0.95rem, 2vw, 1.05rem);

    /* ★ヘッダーの高さ＋余白を変数化 */
    --header-offset: 80px;

    /* --- 成長ステージ --- */
    /* 最小14px、最大18pxで可変するフォントサイズ */
    --font-main: clamp(14px, 1vw + 10px, 18px);
    --border-color: #d1d5db;
    --bg-header: #f8fafc;
    --bg-stage: #eff6ff;


    /* ★メディアクエリをネストして分岐を一箇所にまとめる */
    @media (max-width: 768px) {
        --header-offset: 90px;
    }

    @media (max-width: 480px) {
        --header-offset: 120px;
    }
}

* {
    box-sizing: border-box;
}

/* --- 2. スクロール位置の調整（ここが重要！） --- */
/* :target を使わず、全ての section に適用します */
.section {

    /*
#about:target {padding-top: calc(5vw + var(--header-offset));}
#services:target {padding-top: calc(5vw + var(--header-offset));}
#profile:target {padding-top: calc(5vw + var(--header-offset));}
#contact:target {padding-top: calc(5vw + var(--header-offset));}
*/
    padding: clamp(40px, 10vh, 80px) 0;
    /* ★これだけで「ヘッダーの下に隠れる」問題が解決します */
    scroll-margin-top: var(--header-offset);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0;
    word-wrap: break-word;
    font-size: var(--fz-body);
}

h1,
h2,
h3,
h4 {
    font-family: 'Shippori Mincho', serif;
    color: var(--primary-color);
    margin-top: 0;
}

p {
    padding-left: 3%;
}

.notes-head {
    margin-bottom: 0px;
    font-size: 0.9em;
}

.notes-text {
    margin-top: 0px;
    font-size: 0.9em;
    padding-left: 5%;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: clamp(40px, 10vh, 80px) 0;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        } */

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero */
.hero {
    min-height: 60vh;
    background: linear-gradient(rgba(26, 42, 58, 0.6), rgba(26, 42, 58, 0.6)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: var(--fz-h1);
    line-height: 1.3;
}

/* Section Common */
.section-title {
    text-align: center;
    font-size: var(--fz-h2);
    margin-bottom: 3rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin: 1rem auto 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* .service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-color);
} */

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-color);

    /* 追加：カード内を縦並びのFlexboxにする */
    display: flex;
    flex-direction: column;
}

.service-list {
    padding-left: 1.2rem;
}

/* Stage Chart (Responsive) */
.stage-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 3rem;
}

.stage-box {
    text-align: center;
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.stage-box:hover {
    transform: translateY(-5px);
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    line-height: 60px;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 0.8rem;
}

.stage-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stage-box h4 span {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
}

.stage-box p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Profile */
/* --- 代表紹介セクション：画像サイズ維持＆余白詰め --- */

.profile-flex {
    display: flex;
    align-items: flex-start; /* 上揃えで固定 */
    gap: 0;                  /* 基本の隙間はゼロに */
    margin-bottom: 30px;
    padding-left: 3%;
}

.profile-image {
    /* 1. 枠の幅を200pxに戻し、固定します */
    flex: 0 0 200px;
    width: 200px;
    /* 箱の中で画像を「右寄せ」にする */
    text-align: right; 
}

.profile-image img {
    /* 2. 画像の表示サイズを100%（200px）で表示 */
    width: 100%;
    height: auto;
    display: inline-block;

    /* 3. 画像の位置（高さ）を調整 */
    margin-top: 20px; 
    border-radius: 0;
}

.profile-text {
    flex: 1;
    min-width: 0;
    /* 4. 【重要】ネガティブマージン。
          画像の右側にある「透明な余白分」を打ち消して、テキストを左に引き寄せます。
          数値（-30pxなど）を調整して、お好みの距離まで近づけてください。 */
    margin-left: -40px; 
    
    /* テキストの開始位置を微調整（画像との高さバランス） */
    padding-top: 5px;
}

/* 5. スマホ対応（横並びを維持しつつサイズ調整） */
@media (max-width: 768px) {
    .profile-image {
        flex: 0 0 120px; /* スマホでは画像枠を120px程度に */
        width: 120px;

    }
    .profile-text {
        /* スマホでは引き寄せすぎると重なるので数値を緩める */
        margin-left: -10px; 
        margin-top: 0px;
    }
        .profile-text p{
        /* スマホでは引き寄せすぎると重なるので数値を緩める */
        margin-top: 0px;
        padding-top: 0px;
    }
    .profile-image img {
        margin-top: 10px;
    }
}
#profile td {
    vertical-align: top;
}

#profile th,
td {
    border-bottom: 1px solid black;
}

/* Form */
/* フォーム全体のコンテナ */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* 各入力項目の行設定（PC版：横並び） */
.form-group {
    display: grid;
    grid-template-columns: 200px 1fr;
    /* ラベル幅を200pxに固定 */
    gap: 15px 20px;
    /* margin-bottom: 25px; */
    margin-bottom: 10px;
    align-items: center;
}

/* ラベルのスタイル */
.main-label {
    font-weight: bold;
    font-size: 1rem;
}

/* ★ラジオボタンを常に横並びにする設定 */
.radio-container {
    display: flex !important;
    /* 強制的に横並び */
    flex-direction: row !important;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    /* 狭くても改行させない（文字が長い場合は wrap に変更してください） */
}

/* ラジオボタン内の各選択肢 */
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.95rem;
    white-space: nowrap;
    /* 改行禁止 */
}

.radio-label input[type="radio"] {
    margin-right: 6px;
    width: auto;
}

/* 入力枠のスタイル */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* 送信ボタン */
.btn-large {
    display: block;
    width: fit-content;
    padding: 16px 80px;
    margin: 40px auto 0;

    /* 真摯さを出す色使い：深い紺から少し明るい紺へのグラデーション */
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    /* 文字の間隔を少し広げて上品に */

    border: none;
    border-radius: 10px;
    /* 角丸にして柔らかさと誠実さを両立 */
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    /* 軽い浮遊感 */

    cursor: pointer;
    transition: all 0.3s ease;
    /* 動きを滑らかに */
    position: relative;
    overflow: hidden;
}

/* マウスを乗せた時の動き */
.btn-large:hover {
    transform: translateY(-2px);
    /* 少し浮き上がる */
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    /* 色を反転 */
    opacity: 0.9;
}

/* クリックした時の感触 */
.btn-large:active {
    transform: translateY(0);
}

/* しゃれた飾り：ボタンの右側に小さな矢印を出す（任意） */
.btn-large::after {
    content: '〉';
    margin-left: 10px;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-large:hover::after {
    transform: translateX(5px);
    /* ホバー時に矢印が少し動く */
}

/* --- レスポンシブ対応（画面幅が 768px 以下の場合） --- */
@media (max-width: 768px) {
    .form-group {
        grid-template-columns: 1fr;
        /* ラベルと入力枠を縦に並べる */
        gap: 8px;
    }

    /* 縦並びになってもラジオボタンのコンテナだけは横並びを維持 */
    .radio-container {
        margin-top: 5px;
    }
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #888;
}

/* --- 1. ハンバーガーボタン（PCでは隠し、スマホで表示） --- */
.menu-trigger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    z-index: 200;
}

.menu-trigger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: 7px;
    transition: 0.3s;
}

.menu-trigger span:nth-child(1) {
    top: 12px;
}

.menu-trigger span:nth-child(2) {
    top: 20px;
}

.menu-trigger span:nth-child(3) {
    top: 28px;
}

/* ボタンのアニメーション（×印になる） */
.menu-trigger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- 2. スマホ用設定 (画面幅 768px以下) --- */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-trigger {
        display: block;
        /* スマホのみボタンを表示 */
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        /* 初期状態は右側に隠す */
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
        /* スッという動き */
        z-index: 150;
        padding-top: 100px;
    }

    /* ボタンを押した時に付与されるクラス */
    .nav-wrapper.show {
        right: 0 !important;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* --- 3. PC用設定 (画面幅 769px以上) --- */
/* スマホ用の「隠す設定」を強制的に解除して横並びに戻します */
@media (min-width: 769px) {
    .nav-wrapper {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        box-shadow: none !important;
        padding-top: 0 !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row !important;
    }
}

/* detailsタグ全体の調整 */
.career-detail {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
    transition: background 0.3s;
}

/* クリックする見出し部分 */
.career-detail summary {
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    /* デフォルトの三角形を消したい場合 */
    position: relative;
    padding-left: 20px;
}

/* 三角形の代わりのアイコン（＋マークなど） */
.career-detail summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

/* 開いている時のアイコンの動き */
.career-detail[open] summary::before {
    transform: rotate(90deg);
}

/* 中身のアニメーション用（ふわっと出す） */
.career-content {
    padding-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px dotted #ccc;
    margin-top: 10px;
}


/* .career-section {
    margin-top: 2rem;
}

.career-title {
    font-size: 1.2rem;
    border-left: 5px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 15px;
}

.career-detail {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
} 
*/
dl {
    padding-left: 5%;
}


#buss_define table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#buss_define th {
    width: 25%;
    text-align: left;
    vertical-align: top;
    padding-left: 3%;
    border-top: none;
    border-bottom: none;
}

#buss_define td {
    width: auto;
    padding-left: 3px;
    border-top: none;
    border-bottom: none;
}

.contract {
    padding-left: 2%;
}

.contract_head {
    margin-top: 0px;
    margin-bottom: 0px;
    text-decoration: underline;
}

.contract_text {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 4%;
    font-size: 0.9em;
}

#corp_role table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#corp_role th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    padding-left: 5px;
    border-top: none;
    border-bottom: none;
}

#corp_role td {
    width: 70%;
    padding-left: 5px;
    border-top: none;
    border-bottom: none;
}

#study_personal table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#study_personal th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#study_personal td {
    width: 70%;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#study_public table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#study_public th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#study_public td {
    width: 70%;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#study_rule table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#study_rule th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    padding-left: 5%;
    border-top: none;
    border-bottom: none;
}

#study_rule td {
    width: 70%;
    padding-left: 5px;
    border-top: none;
    border-bottom: none;
}

#study_rule span {
    font-size: 0.9em;
}

#study_thema table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
#study_thema{
    padding-top:20px;
}
#study_thema th {
    width: 30%;
    text-align: left;
    vertical-align: top;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#study_thema td {
    width: 70%;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#profile_list {
    margin-left: 5%;
    margin-right: 20%;
}

#profile_list table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#profile_list th {
    width: 15%;
    text-align: left;
    vertical-align: top;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

#profile_list td {
    width: 85%;
    padding-left: 5px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

/* --- 成長ステージ --- */
.table-container {
    width: 100%;
    margin: 20px 0;
    font-family: sans-serif;
    color: #333;
    /* 追加：左側に余白を設けて、pタグの開始位置(3%)と概ね合わせる */
    padding-left: 3%;
    padding-right: 3%;
    /* 右側もバランスをとる */
    box-sizing: border-box;
}

.table-caption {
    /* フォントサイズを本文(p)のサイズ感に合わせる */
    font-size: var(--fz-body);
    font-weight: bold;
    /* 左寄せにして、pタグの開始位置と揃える */
    text-align: left;
    margin-bottom: 15px;
}

/* --- Gridテーブル本体 --- */
.grid-table {
    display: grid;
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    /* フォントサイズを、CSS変数で定義されている本文サイズ(var(--fz-body))に上書き */
    font-size: var(--fz-body);
}

/* 補足：セルの余白を少し調整して、より読みやすく */
.grid-header,
.grid-cell {
    background-color: #fff;
    padding: 0.8em 1em;
    line-height: 1.5;
}

/* --- PC表示の列幅設定 (768px超) --- */
@media (min-width: 769px) {
    .grid-table {
        /* 列の幅を調整：ステージ名は固定気味、課題は広く */
        grid-template-columns: 120px 1.2fr 1.8fr 1.5fr;
    }

    .grid-header {
        background-color: var(--bg-header);
        font-weight: bold;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stage-label {
        font-weight: bold;
        text-align: center;
        background-color: var(--bg-stage);
    }
}

/* --- タブレット対応 (max-width: 768px) --- */
@media (max-width: 768px) {
    .grid-table {
        grid-template-columns: 100px 1fr 1fr 1fr;
        /* 少し幅を詰める */
    }

    .grid-header,
    .grid-cell {
        padding: 0.8em;
        /* 余白を少し削る */
    }
}

/* --- スマホ対応 (max-width: 480px) --- */
@media (max-width: 480px) {
    .grid-header {
        display: none;
        /* ヘッダーを非表示 */
    }

    .grid-table {
        grid-template-columns: 1fr;
        /* 1列のカード形式に */
        gap: 10px;
        /* カード同士の隙間 */
        background-color: transparent;
        border: none;
    }

    .grid-cell {
        border: 1px solid var(--border-color);
        display: block;
    }

    /* ステージ名のラベル（カードのタイトル風） */
    .stage-label {
        background-color: #334155;
        color: #fff;
        font-weight: bold;
        border-bottom: none;
    }

    /* 各項目の前に疑似要素でラベルを追加 */
    .grid-cell[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: bold;
        color: #64748b;
        margin-bottom: 4px;
        text-decoration: underline;
    }

    /* ボタンのタップ領域を広げる */
    .btn-nav,
    .btn-submit,
    .btn-contact-large {
        padding: 12px 30px !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.column-links {
    /* 追加：上の要素との間に自動で余白を作り、最下部に押し出す */
    margin-top: auto;
    padding-top: 1.5rem;
    /* 上のテキストとの最低限の余白 */
    text-align: center;
    /* ボタンを中央寄せにする場合 */
}

/* 詳細ページ内のお問い合わせボタン用ラッパー */
.detail-contact-wrapper {
    text-align: center;
    margin-top: 3rem;
    /* 上のコンテンツとの距離を広げる */
    padding: 2rem 0;
    border-top: 1px solid #eee;
    /* 区切り線を入れて窮屈さを解消 */
}

/* 詳細ページ内ボタン専用のスタイル（既存のbtn-navを拡張） */
.btn-contact-large {
    display: inline-block;
    padding: 15px 50px !important;
    /* ボタンを大きく */
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-contact-large:hover {
    transform: scale(1.05);
    /* 少し大きくして視認性を上げる */
    background-color: var(--accent-color) !important;
    /* ホバー時に色を変える */
}

/* 必須ラベルのスタイル */
.required-label {
    background-color: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* スムーススクロール時の「被り」防止 */
/* 詳細セクションが表示された際、ヘッダーに隠れないように位置を調整 */
.detail-content {
    scroll-margin-top: calc(var(--header-offset) + 20px);
}

form label {
    display: inline-block;
    margin-right: 4px;
    /* 完全ゼロにしたい場合は 0 */
}

form input {
    margin: 0;
}

.post-adr {
    display: flex;
    align-items: center;
    /* 縦位置を揃える */
    gap: 6px;
    /* 入力欄とボタンの間隔 */
}

.post-adr>.main-label {
    margin-right: 3%;
    white-space: nowrap;
    /* ラベル改行防止 */
}

#zipcode {
    width: 120px;
    /* 郵便番号用に適切な幅 */
}

.btn-post {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* --- 二つの柱：納得感を生む特別レイアウト --- */

.profile-vision {
    background-color: #f0f4f8; /* 他の背景(bg-light)より少し青みのある落ち着いた色 */
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid #d1dce5;
}

.vision-header {
    text-align: center;
    margin-bottom: 30px;
}

.vision-header h3 {
    color: #005494; /* メインカラー */
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.vision-header h3::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: #005494;
    margin: 8px auto 0;
}

.profile-pillars {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pillar-item {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pillar-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #005494;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.pillar-item h4 {
    color: #333;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 8px;
}

.pillar-item p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.vision-footer {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #005494;
    font-size: 0.95rem;
    color: #444;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .profile-pillars {
        flex-direction: column;
        gap: 30px;
    }
    .profile-vision {
        padding: 25px 15px;
    }
}