/* スタッフインタビューページ用CSS */
/* === 共通スタイル === */
.breadcrumb-navigation {
  margin-top: 50px;
}
.interview-tag {
background: #e29e96;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e29e96;
  display: inline-block;
  margin: 2px;
}

/* === 詳細ページ（single-staff_interview.php）=== */
.single-interview {
    margin-top: 70px;
}

/* インタビューヒーロー */
.interview-hero {
    background: linear-gradient(135deg, #fff2f0 0%, #fff2f0 100%);
    padding: 80px 0;
    position: relative;
}

.interview-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.interview-hero-content {
    position: relative;
    z-index: 2;
}

.interview-hero-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.interview-hero-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interview-hero-avatar .staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-hero-avatar .avatar-placeholder {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.interview-title {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.interview-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.interview-hero-quote {
    background: #fff;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* インタビュー本文 */
.interview-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.interview-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.interview-text {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.interview-text h2 {
    color: #e29e96;
    font-size: 24px;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.interview-text h2:first-child {
    margin-top: 0;
}

.interview-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.default-interview-content {
    color: #666;
}

/* サイドバー */
.interview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.interview-info-card,
.interview-links-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.interview-info-card h3,
.interview-links-card h3 {
    color: #e29e96;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.interview-details {
    margin: 0;
}

.interview-details dt {
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    margin-bottom: 5px;
}

.interview-details dt:first-child {
    margin-top: 0;
}

.interview-details dd {
    margin: 0 0 10px 0;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 5px;
    color: #666;
}

.interview-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.interview-links li {
    margin-bottom: 10px;
}

.interview-links a {
display: block;
  padding: 12px 15px;
  background: #f8f9fa;
  color: #e29e96;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  font-weight: bold;
}

.interview-links a:hover {
    background: #e29e96;
    color: white;
    transform: translateY(-2px);
}

/* 関連インタビュー */
.related-interviews {
    padding: 80px 0;
    background: white;
}

.related-interview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.related-interview-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.interview-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 25px;
}

.related-interview-card .interview-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.related-interview-card .interview-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #b98d58;, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

.related-interview-card .interview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-interview-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.related-interview-card .interview-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.related-interview-card .interview-tags {
    margin: 15px 0;
}

.interview-excerpt {
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
}

.interview-excerpt blockquote {
    margin: 0;
    padding: 0;
    border: none;
    font-style: italic;
}

/* インタビューCTA */
.interview-cta {
    background: linear-gradient(135deg, #e29e96 0%, #e29e96 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.interview-cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.interview-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* === 一覧ページ（archive-staff_interview.php）=== */

/* アーカイブヒーロー */
.archive-hero {
    background: linear-gradient(135deg, #fff2f0 0%, #fff2f0 100%);
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}
.archive-interviews .archive-hero::before {
background: url(https://impex.tokyo/yui-katsushika/careers/wp-content/themes/yui-saiyo/images/shocho1.jpg)center center;
  background-size: cover;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.archive-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.archive-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.archive-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
}

/* フィルター */
.interview-filters {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.filter-tab:hover,
.filter-tab.active {
background: #f3b696;
  color: #fff;
  border: 1px solid #f3b696;
  transform: translateY(-2px);
  font-weight: bold;
}

/* インタビューグリッド */
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.interview-archive-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.interview-archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-header {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.interview-archive-card .interview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.interview-archive-card .interview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-archive-card .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #b98d58;, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.interview-archive-card .interview-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.interview-archive-card .interview-role {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.interview-date {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.interview-archive-card .interview-tags {
    padding: 20px 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interview-archive-card .interview-excerpt {
    padding: 20px 30px;
    color: #555;
    line-height: 1.7;
}

.interview-archive-card .interview-excerpt blockquote {
    margin: 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
}

.card-footer {
    padding: 20px 30px 30px;
    text-align: right;
}

.read-more {
    color: #000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.interview-archive-card:hover .read-more {
    color: #e74c3c;
    transform: translateX(5px);
}

/* インタビューなしの場合 */
.no-interviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-interviews-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-interviews i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 30px;
}

.no-interviews h2 {
    font-size: 28px;
    color: #666;
    margin-bottom: 20px;
}

.no-interviews p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ページネーション */
.pagination-wrapper {
display: flex;
  justify-content: center;
  margin: 40px auto;
    }

.page-numbers{
    display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background: white;
  color: #d37695;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
    }

.pagination-wrapper  .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    color: #d37695;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination-wrapper  .page-numbers:hover,
.pagination-wrapper  .page-numbers.current {
    background: #d37695;
    color: white;
}


/* アーカイブCTA */
.archive-cta {
    background: linear-gradient(135deg, #e29e96 0%, #e29e96 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.archive-cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.archive-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}
/* CTAセクション */
.interviews-cta {
    margin-top: 80px;
}

.cta-box {
    background: #e39d95;
    color: #fff;
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fff;
    color: #e39d95;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* 詳細ページ */
    .interview-hero-meta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .interview-hero-avatar {
        width: 100px;
        height: 100px;
    }
    
    .interview-name {
        font-size: 28px;
    }
    
    .interview-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .interview-text {
        padding: 25px;
    }
    
    .related-interview-cards {
        grid-template-columns: 1fr;
    }
    
    /* 一覧ページ */
    .archive-title {
        font-size: 32px;
    }
    
    .archive-subtitle {
        font-size: 18px;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 20px;
    }
    
    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .interviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .interview-archive-card .interview-avatar {
        width: 60px;
        height: 60px;
    }
        
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .interview-hero {
        padding: 60px 0;
    }
    
    .interview-content {
        padding: 60px 0;
    }
    
    .interview-text {
        padding: 20px;
    }
    
    .interview-hero-quote {
        padding: 20px;
        font-size: 16px;
    }
    
    .archive-hero {
        padding: 80px 0;
    }
    
    .archive-title {
        font-size: 28px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .interview-archive-card .interview-excerpt {
        padding: 15px 20px;
    }
    
    .card-footer {
        padding: 15px 20px 20px;
    }
}

/* インタビューページ用CSS（シンプル版） - style.cssに追加 */

/* === index.phpのインタビューカード（シンプル版） === */
.interview-card .interview-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.interview-card:hover .interview-card-inner {
    transform: translateY(-5px);
}

/* アイコン画像のスタイル */
.interview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.interview-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interview-card:hover .interview-icon {
    transform: scale(1.05);
}

.avatar-initial {
    font-size: 32px;
    font-weight: bold;
}

/* インタビュー情報 */
.interview-simple-info {
    flex-grow: 1;
    margin-bottom: 20px;
}

.interview-position {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.interview-age-gender {
    font-size: 14px;
    margin-bottom: 15px;
}

.interview-catch {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* 続きを読むボタン */


.interview-read-more i {
    transition: transform 0.3s ease;
}

.interview-card:hover .interview-read-more i {
    transform: translateX(3px);
}

/* === single-staff_interview.php用スタイル更新 === */
.interview-hero-avatar .staff-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* アーカイブページのアイコン対応 */
.interview-archive-card .interview-avatar img,
.related-interview-card .interview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .interview-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .avatar-initial {
        font-size: 24px;
    }
    
    .interview-position {
        font-size: 16px;
    }
    
    .interview-age-gender {
        font-size: 13px;
    }
    
    .interview-catch {
        font-size: 14px;
    }
    
    .interview-card .interview-card-inner {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .interview-meta {
  flex-direction: column;
}
    .interview-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .avatar-initial {
        font-size: 20px;
    }
    
    .interview-position {
        font-size: 15px;
    }
    
    .interview-catch {
        font-size: 13px;
    }
    
    .interview-card .interview-card-inner {
        padding: 20px;
    }
}
/* index.phpのスタッフインタビューセクション用CSS - style.cssに追加 */

/* インタビューカードのリンク対応 */
.interview-card .interview-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.interview-card:hover .interview-card-inner {
    transform: translateY(-3px);
}

/* アイキャッチ画像のスタイル */
.interview-avatar .interview-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.interview-card:hover .interview-thumbnail {
    transform: scale(1.05);
}

/* イニシャル表示の改善 */
.avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* クオートセクションの改善 */
.interview-quote-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* 続きを読むリンク */
.interview-read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #e39d95;
  border-radius: 50px;
  padding: 3px 10px;
  gap: 8px;
  color: #e39d95;
  font-weight: bold;
}

.interview-read-more i {
    transition: transform 0.3s ease;
}

.interview-card:hover .interview-read-more i {
    transform: translateX(5px);
}

/* インタビュー詳細表示の改善 */
.interview-card .interview-card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.interview-quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* もっと見るボタン */
.interview-more {
    text-align: center;
    margin-top: 60px;
}

.more-interviews-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-interviews-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #e29e95;
    transform: translateY(-2px);
    text-decoration: none;
}

.more-interviews-button i {
    transition: transform 0.3s ease;
}

.more-interviews-button:hover i {
    transform: translateX(5px);
}

/* デフォルト表示時のカード調整 */
.interview-card .interview-card-inner:not([href]) {
    cursor: default;
}

.interview-card .interview-card-inner:not([href]):hover {
    transform: none;
}

.interview-card .interview-card-inner:not([href]) .interview-read-more {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .interview-card .interview-card-inner {
        padding: 25px;
    }
    
    .interview-avatar {
        width: 50px;
        height: 50px;
    }
    
    .avatar-initial {
        font-size: 20px;
    }
    
    .interview-quote {
        font-size: 14px;
    }
    
    .interview-read-more {
        font-size: 13px;
        margin-top: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .interview-more {
        margin-top: 40px;
    }
    
    .more-interviews-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
