@charset "UTF-8";
/* ==========================================================================
   PC用のスタイル（基本設定：画面幅が広いとき）
   ========================================================================== */
/* アコーディオンボタン - 汎用クラス */
.accordion__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 64px;
    margin-top: 32px;
    border: 1px solid #000;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.accordion__btn:hover {
    background: #e8e8e8;
    transition: all 0.3s ease-in-out;
}
.accordion__btn-text {
    display: block;
    margin-right: -2em;
    letter-spacing: 2em;
}
.accordion__btn-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
}

/* ホバーしたときに「bounce-subtle」というアニメーションを実行 */
.accordion__btn:hover .accordion__btn-icon {
    animation: bounce-subtle 0.6s ease-in-out;
}
@keyframes bounce-subtle {
    0% { /* 開始地点 */
        transform: translateY(-50%) scale(1);
    }
    30% { /* 少し大きくなって上に弾む */
        transform: translateY(-50%) scale(1.2) cubic-bezier(0.25, 1.5, 0.5, 1);
    }
    50% { /* 反動で少し縮む */
        transform: translateY(-50%) scale(0.9);
    }
    70% { /* 軽く揺り戻し */
        transform: translateY(-50%) scale(1.02);
    }
    100% { /* 元に戻る */
        transform: translateY(-50%) scale(1);
    }
}
.accordion__btn-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 16px;
    height: 1px;
    border-radius: 1px;
    background: #000;
    transform: translate(-50%, -50%) rotate(0);
    transition: transform 0.3s ease-in-out;
}
.accordion__btn-icon span:first-child {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__btn.is-active .accordion__btn-icon span,
.accordion__btn.is-active .accordion__btn-icon span:first-child {
    transform: translate(-50%, -50%) rotate(360deg);
}

/* グリッドコンテナ */
.executive-team__grid-container {
    display: grid;
    /* 1:1 の比率で2列に固定 */
    grid-template-columns: 1fr 1fr;
    gap: 80px 64px;
}

/* ページタイトル */
.executive-team__page-title {
    /* タイトルは2列分ぶち抜きで確保し、右側への回り込みを防止 */
    grid-column: 1 / 3;
    width: calc(50% - 32px);
    margin-top: 24px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
}

/* ボーダーのスタイル */
.executive-team__border-bottom {
    position: relative;
    padding-bottom: 16px;
}
.executive-team__border-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #575680, #28998c);
}
.executive-team__border-bottom--small {
    position: relative;
    max-width: 335px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

/* 写真のスタイル */
.executive-team__figure {
    width: 100%;
    margin: 0;
}
.executive-team__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 名前のスタイル */
.executive-team__name-title {
    margin-bottom: 8px;
    padding-bottom: 16px;
}
.executive-team__position {
    margin: 0 0 8px 0;
    font-size: clamp(14px, 2vw, 18px);
}
.executive-team__name {
    font-size: 24px;
}
.executive-team__name-ja {
    display: block;
    font-size: clamp(28px, 2vw, 32px);
    font-weight: bold;
}
.executive-team__name-en {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: normal;
}

/* 略歴（定義リスト）のスタイル */
.executive-team__profile-title {
    padding: 24px 0 8px 4px;
    border-bottom: 1px solid #000;
    font-size: 14px;
    font-weight: bold;
}
.executive-team__profile-list {
    display: flex; /* 年月と中身を横並びにする場合 */
    padding: 12px 0 12px 4px;
    border-bottom: 1px solid #c8c8c8;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}
.executive-team__profile-label {
    flex-shrink: 0;
    width: 104px; /* 年月エリアの幅を固定 */
}
.executive-team__profile-value {
    flex-grow: 1;
    margin: 0;
}

/* ==========================================================================
   スマホ・タブレット用のスタイル（画面幅が 767px 以下のとき）
   ========================================================================== */
@media (max-width: 767px) {
    .executive-team__grid-container {
        /* Gridを解除して、通常の縦並びに変更 */
        display: block;
    }

    .executive-team__page-title {
        /* 1列に戻るため、grid-columnの指定を解除 */
        grid-column: auto;
        width: 100%;
        margin-bottom: 40px;
    }

    .executive-team__item {
        /* PCではgapで制御していた余白を、スマホ用にmarginで設定（写真とテキストの間の隙間になります） */
        margin-bottom: 24px;
    }

    .executive-team__content {
        margin-bottom: 96px;
    }
}
