@charset "utf-8";

/* =========================================
   1. 基本設定（全デバイス共通）
========================================= */
.officer-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.officer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    /* スマホでは縦に並べる */
    display: flex;
    flex-direction: column; 
    gap: 20px;
}

/* 一番上のカードの余白 */
.officer-card:first-child {
    margin-top: 50px;
}

/* --- プロフィールエリア --- */
.officer-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.officer-titles .role {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 0.2em;
}

.officer-titles .name-jp {
    font-size: 24px;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 5px;
}

.officer-titles .name-en {
    font-size: 13px;
    color: #00a0e9;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.icon-youtube img {
    width: 30px;
}

/* --- テキストエリア（経歴・キャプション） --- */
.officer-message .history {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-top: 1em; /* ★追加：上に1文字分のスペースを空ける */
    margin-bottom: 20px;
    text-align: justify;
}

.officer-message .caption {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #000;
    background-color: #f0f9ff;
    padding: 12px 15px;
    border-left: 4px solid #00a0e9;
    border-radius: 0 4px 4px 0;
    margin-bottom: 20px;
}

/* =========================================
   2. スマートフォン専用設定（991px以下）
========================================= */
@media (max-width: 991px) {
    /* カード内の要素を上から順に1列に並べる */
    .officer-card {
        display: flex;
        flex-direction: column; 
        padding: 25px 20px;
        gap: 0; /* 隙間は各要素のマージンで調整 */
    }

    /* 段1：お写真を大きく1段で表示 */
    .officer-profile {
        display: block !important; /* 横並びを解除 */
        width: 100% !important;
        margin-bottom: 25px;
    }

    .officer-img {
        width: 100% !important; /* 画面幅いっぱいに */
        max-width: 100%;
        margin-bottom: 15px;
    }

    .officer-img img {
        width: 100%;
        border-radius: 8px; /* 四角ベースに少しの丸みで誠実さを */
    }

    /* 段2：役職・名前・アイコン */
    .officer-titles {
        text-align: center; /* スマホでは中央寄せが見栄えが良いです */
        margin-bottom: 15px; /* サインのために少し余白を詰める */
    }

    .officer-titles .role {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .officer-titles .name-jp {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .officer-titles .name-en {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .icon-youtube {
        text-align: center; /* アイコンも中央へ */
    }

    /* 段3：座右の銘（直筆サイン）※スマホ用 */
    .officer-motto {
        width: 100% !important;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .officer-motto img {
        max-width: 200px;
        width: 100%;
        height: auto;
    }

    /* 段4：History（経歴） */
    .officer-message .history {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    /* 段5：Caption（補足） */
    .officer-message .caption {
        font-size: 15px;
        padding: 15px;
        margin-bottom: 30px;
    }
}

/* =========================================
   3. PC専用設定（992px以上）
========================================= */
@media (min-width: 992px) {
    .officer-card {
        flex-direction: row; /* 横に2カラム並べる（左：プロフィール、右：文章） */
        padding: 40px;
        gap: 40px;
    }

    /* 1カラム目：プロフィール（写真＋名前＋サイン） */
    .officer-profile {
        width: 240px; /* ★元の200pxから1.2倍の「240px」に広げました */
        flex-shrink: 0;
    }

    /* 2カラム目：メッセージ（文章） */
    .officer-message {
        flex: 1; /* 残りの幅を自動で埋めるため、左が広がった分、自然に狭くなります */
    }

    /* 写真の下の余白 */
    .officer-img {
        margin-bottom: 15px;
    }

    /* サイン部分（プロフィール下） */
    .officer-motto {
        width: 100%;
        margin-top: 25px; /* 名前との間に余白を少し取る */
        text-align: left; /* 左寄せにしてスッキリと */
    }

    .officer-motto img {
        max-width: 100%;
        height: auto;
    }
}

/* =========================================
   代表ご挨拶リンクボタン（シャープ＆ライト）
========================================= */
.officer-msg-link {
    margin-top: 25px;
    /* PCでは右寄せ、スマホではメディアクエリで中央寄せ */
    text-align: right; 
}

.btn-president {
    display: inline-block;
    background-color: transparent !important; /* 背景なし */
    color: #00a0e9 !important;               /* 清潔感のある水色 */
    border: 1px solid #00a0e9 !important;     /* ★線を「1px」にしてシャープに */
    padding: 10px 35px;                       /* 左右にゆとりを持たせて軽やかに */
    border-radius: 50px;                      /* ★角を完全に丸くしてRに */
    font-size: 14px;
    font-weight: 500;                         /* 太すぎず、シュッとした印象に */
    text-decoration: none;
    transition: all 0.3s ease;                /* ふわっと動くアニメーション */
    letter-spacing: 0.05em;                   /* 文字間をわずかに広げて上品に */
}

/* マウスを乗せた時の演出（さりげなく） */
.btn-president:hover {
    background-color: rgba(0, 160, 233, 0.05) !important; /* ごく薄く色をつけて反応を出す */
    color: #0088c7 !important;                             /* 文字色をわずかに濃く */
    border-color: #0088c7 !important;
    transform: translateY(-1px);                          /* わずかに浮いて軽さを演出 */
}

/* スマホ用の微調整 */
@media (max-width: 991px) {
    .officer-msg-link {
        text-align: center; /* スマホでは中央寄せ */
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .btn-president {
        width: 100%;       /* スマホでは画面幅いっぱいに（押しやすく） */
        max-width: 280px;  /* でも広がりすぎないように制限 */
        padding: 12px 0;
        border: 2px solid #00a0e9 !important; /* スマホでは少し線を太くして存在感を出す */
    }
}