/** * スタッフカード ブロックのフロントエンド表示用スタイル */ :root { --primary-color: #78909c; --secondary-color: #90a4ae; --accent-color: #b0bec5; --light-bg: #eceff1; --dark-gray: #455a64; --medium-gray: #78909c; --light-gray: #cfd8dc; --shadow: 0 4px 20px rgba(0,0,0,0.06); --card-radius: 16px; } /* スタッフカードスタイル */ .staff-card-block { margin: 0 0 1.5rem; width: 100%; .staff-card { display: flex; flex-direction: column; background-color: #fff; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; width: 100%; &:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); } } .staff-card-header { background: var(--primary-color); color: white; padding: 25px; position: relative; } .staff-info { display: flex; align-items: center; } .staff-info-text { flex: 1; } .staff-position { font-size: 14px; font-weight: 500; opacity: 0.9; color: #fff; margin: 0 0 5px; } .staff-name { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 5px; line-height: 1.2; } .staff-name-romaji { font-size: 14px; font-weight: 400; color: #fff; opacity: 0.9; letter-spacing: 0.05em; margin: 0; } .staff-image-wrapper { width: 100px; height: 100px; border-radius: 50%; margin: 0 0 0 15px; overflow: hidden; border: 3px solid #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.15); display: flex; justify-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.2); flex-shrink: 0; order: 2; } .staff-image { height: 100%; object-fit: cover; } .staff-image-placeholder { display: flex; justify-content: center; align-items: center; height: 100%; } .staff-card-body { padding: 30px; background-color: #fff; flex-grow: 1; display: flex; flex-direction: column; } .message-title { font-size: 18px; font-weight: 600; line-height: 1.4; margin: 0 0 25px; position: relative; padding-left: 20px; border-left: 3px solid var(--accent-color); color: var(--dark-gray); } .message-content { font-size: 15px; line-height: 1.8; color: #555; margin: 0 0 20px; p { margin: 0 0 15px; &:last-child { margin: 0; } } } .staff-carrier { margin: auto 0 0; font-size: 14px; color: var(--medium-gray); border-top: 1px solid var(--light-gray); padding-top: 15px; } .carrier-label { font-weight: 600; margin: 0 5px 0 0; } .carrier-text { color: var(--medium-gray); } } /* レスポンシブ対応 */ @media (max-width: 767px) { .staff-card-block { .staff-card-header { padding: 20px; } .staff-info { flex-direction: column; align-items: center; } .staff-info-text { order: 2; text-align: center; margin: 15px 0 0; } .staff-image-wrapper { order: 1; margin: 0 0 10px; } .staff-name { font-size: 20px; } .staff-card-body { padding: 20px; } .message-title { font-size: 16px; margin: 0 0 20px; } .message-content { font-size: 14px; } } }