/* ==========================================
   協働事例一覧
========================================== */

/* 協働事例 ページタイトル */
.collaboration-archive .page-title {
    color: #45B035;
    text-align: left;
    margin: 0 0 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 2rem;
    font-weight: bold;
}

/* 協働事例一覧 */
.collaboration-archive {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

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


.collaboration-item {
    padding: 35px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: .25s;
}

.collaboration-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.collaboration-item h2 {
    margin: 0 0 8px;
    font-size: 22px;
}
.collaboration-item h2 a {
    color: #45B035;
    text-decoration: none;
}
.collaboration-item h2 a:hover {
    text-decoration: none;
}
.collaboration-item p {
    line-height: 1.6;
    margin: 20px 20px;
    background-color: #f0f8ed;
    padding: 10px 15px;
    min-height: calc(1.6em * 3);
}

/* ==========================================
   協働事例一覧
   タイトルリンク
   外部リンクアイコン
========================================== */
.collaboration-item h2 a::after {
    display: inline-block;
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-left: 5px;
    padding: 0;
}

/* 協働事例 詳細ページ */
.collaboration-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.collaboration-title {
    color: #45B035;
    text-align: left;
    margin: 0 0 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 2rem;
    font-weight: bold;
	line-height: 1.5;
}

.collaboration-content {
    line-height: 1.8;
    white-space: normal;
}
.collaboration-back {
    text-align: center;
    margin-top: 50px;
}
.collaboration-back a {
    display: inline-block;
    padding: 12px 30px;
    background: #45B035;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #45B035;
    border-radius: 4px;
    transition: 0.2s;
}
.collaboration-back a:hover {
    background: #3a962d;
    border-color: #3a962d;
}

/* ==========================================
   協働事例 ページ送り
========================================== */
.collaboration-archive .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    box-sizing: border-box;
    margin-left: 6px;
    padding: 0 10px;
    border: 1px solid #45B035;
    border-radius: 6px;
    background: #fff;
    color: #45B035;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.collaboration-archive .page-numbers.current {
    background: #45B035;
    color: #fff;
}

.collaboration-archive .page-numbers:hover {
    background: #45B035;
    color: #fff;
}

.collaboration-archive .page-numbers.next {
    padding: 0 14px;
}

.collaboration-archive .pagination {
    text-align: center;
}

/* スマホ対応：協働事例 */
@media screen and (max-width:768px) {
	
    /* 協働事例詳細：タイトル */
    .collaboration-title {
        font-size: 20px !important;
    }

}

