/*
このファイルに scss は存在しません。css のみ。
/wp-content/themes/20231227_primagest/assets/css/ だけに存在します。
他のファイルをできるだけ触らないためです。
他社制作時のサイト設計がそもそもで破綻し過ぎているので，このファイルで一部コードの共通を図ります。
jc
*/

.case-related-content {
    margin: 0 auto 60px;
}
.case-related-content-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 300px));
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 60px min(1px, 60px);
    margin: 40px auto 0;
}
.case-related-content-list .item {
    background: #fff;
}
.case-related-content-list .item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px;
}
.case-related-content-list .item-img {
    text-align: center;
}
.case-related-content-list .item-tx {
    margin: 10px 0 0;
    line-height: 1.4;
}
.case-related-content-list .item-logo {
    margin: auto 0 0;
    text-align: center;
}
.case-related-content-list .item-title {
    margin: 5px 0 0;
}

/* solution-related-list-outer */
.solution-related-list-outer {
    margin: 80px 0;
    padding: 80px 0 100px;
    background: #EDF7FF;
}
.solution-related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem 40px;
    margin: 50px 0 0;
}
.solution-related-list .item {
}
.solution-related-list .item a::after {
    display: inline-block;
    background: url(/img/common/btn_icon1.svg) no-repeat center center / 98% auto;
    width: 2.75rem;
    height: 2.75rem;
    content: "";
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}
.solution-related-list .item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
    border-bottom: 1px solid #BFCFF8;
    padding: 0 0 2rem 0;
    text-decoration: none;
}
.solution-related-list .item span {
    flex: 1;
    font-weight: bold;
}