@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =========================================
   SHOUEN お知らせ アーカイブ
   ========================================= */

.shouen-archive-news {
    width: 100%;
    margin-top: 40px;
}

.shouen-archive-news__item {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.shouen-archive-news__link {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 35px !important;
    grid-template-areas: "content arrow" !important;
    column-gap: 20px;

    width: 100%;
    min-width: 0;

    padding: 18px 8px;

    box-sizing: border-box;

    color: #222 !important;
    text-decoration: none !important;
}

.shouen-archive-news__content {
    grid-area: content;

    min-width: 0;
}

.shouen-archive-news__title {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #222 !important;

    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;

    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;

    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

.shouen-archive-news__date {
    display: block !important;

    margin-top: 5px !important;
    padding: 0 !important;

    color: #666 !important;

    font-size: 12px !important;
    line-height: 1.5 !important;
}

.shouen-archive-news__arrow {
    grid-area: arrow;

    align-self: center;

    color: #222 !important;

    font-size: 18px;
    line-height: 1;

    transition: transform .25s ease;
}

.shouen-archive-news__link:hover {
    background: rgba(0,0,0,.025);
}

.shouen-archive-news__link:hover
.shouen-archive-news__arrow {
    transform: translateX(5px);
}


/* スマホ */
@media (max-width: 767px) {

    .shouen-archive-news {
        margin-top: 30px;
    }

    .shouen-archive-news__link {
        grid-template-columns: minmax(0, 1fr) 25px !important;
        column-gap: 10px;
        padding: 15px 5px;
    }

    .shouen-archive-news__title {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .shouen-archive-news__date {
        margin-top: 4px !important;
        font-size: 10px !important;
    }

    .shouen-archive-news__arrow {
        font-size: 15px;
    }
}