.elementor-5001 .elementor-element.elementor-element-243c009{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5001 .elementor-element.elementor-element-b71a1c3 > .elementor-widget-container{padding:0px 20px 20px 20px;}.elementor-5001 .elementor-element.elementor-element-b71a1c3{font-family:"Noto Sans JP", Sans-serif;color:#4D4D4D;}.elementor-5001 .elementor-element.elementor-element-b71a1c3 a{color:#4D4D4D;}.elementor-5001 .elementor-element.elementor-element-b71a1c3 a:hover{color:#B4B4B4;}.elementor-5001 .elementor-element.elementor-element-bedc304{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-b68781e *//* 全体の器 */
.header-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px 0; /* 上下に少し余白があるとラインが綺麗に見えます */
}

/* 左側の突き出たライン */
.header-container::before {
    content: "";
    position: absolute;
    left: 0; 
    width: 50px; 
    height: 3px; /* 少し太くして存在感を調整 */
    background-color: #0880c7; 
    z-index: 2; 
}

/* 背景の角丸グラデーションボックス */
.modern-header-box {
    margin-left: 10px; 
    padding: 60px 30px 60px 60px; /* 上下幅を調整し、左の余白を確保 */
    width: 100%;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 10px;
    
}

/* テキストのスタイル */
.header-text {
    margin: 0; /* H1のデフォルトマージンをリセット */
    color: #333;
    font-size: 2rem; /* 少し調整 */
    font-weight: bold;
    line-height: 1.4;
}

/* スマホ用の調整 */
@media (max-width: 768px) {
    .header-text {
        font-size: 1.4rem;
    }
    .modern-header-box {
        padding: 30px 20px 30px 50px;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-5ea56cd *//* 全体コンテナ */
.interview-archive-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 3カラムグリッド */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
}

/* カード外枠（水色の太枠デザイン） */
.interview-item {
    background-color: #add8e6; /* 水色の枠色 */
    border-radius: 45px;      /* 大きな角丸 */
    padding: 12px;            /* 枠の太さ */
    display: flex;
}

/* カード内側 */
.item-inner {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* 画像部分（画像準備中等のグレー背景を考慮） */
.item-image {
    width: 100%;
    height: 220px;
    background-color: #eee; /* 画像がない時の背景色 */
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキスト部分 */
.item-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* オレンジラベル */
.item-label {
    display: inline-block;
    align-self: flex-start;
    background: #ff9f57;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* タイトル（2行分の高さを確保して揃える） */
.item-title {
    font-size: 19px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 10px 0;
    min-height: 2.8em;
}

/* 名前・入社年 */
.item-meta {
    margin-bottom: 15px;
    font-size: 15px;
}
.item-name { font-weight: bold; margin-right: 10px; color: #333; }
.item-year { color: #888; font-size: 13px; }

/* 本文（3行でカット） */
.item-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 4.8em;
}

/* VIEW MOREボタン */
.item-more {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.more-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 30px;
    background: #0099ff;
    color: #fff;
    border-radius: 15px;
    margin-left: 10px;
    transition: 0.3s;
}
.item-more:hover .more-arrow { transform: translateX(5px); }

/* ページネーション */
.interview-pagination {
    text-align: center;
    margin-top: 50px;
}
.interview-pagination .page-numbers {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    border: 1px solid #add8e6;
    border-radius: 10px;
    color: #0099ff;
    text-decoration: none;
}
.interview-pagination .page-numbers.current {
    background: #0099ff;
    color: #fff;
    border-color: #0099ff;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
    .interview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 650px) {
    .interview-grid { grid-template-columns: 1fr; }
    .interview-item { max-width: 400px; margin: 0 auto; }
}/* End custom CSS */