@import "./import.css";
/*---------------------------
news
----------------------------*/
.news_list {
    width: 100%;
    border-top: 1px dashed var(--site-off-white-color);
}

.news_list a {
    text-decoration: none;
}

.news_list_item {
    height: 132px;
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
    border-bottom: 1px dashed var(--site-off-white-color);
    transition: .3s;
}

.news_list_item:hover {
    cursor: pointer;
    background-color: var(--site-off-white-color);
}

.news_thumbnail {
    width: 18%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.news_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    flex: 1;
    text-align: left;
    padding: 0.5rem;
    height: 100%;
    gap: 0.5rem;
}

.news_info p {
    color: var(--site-gray-color);
    font-size: 1rem;
}

.news_info h3 {
    flex: 1;
    color: var(--site-text-color);
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-height: calc(1 * 1.6 * 2rem);
}

.arrow_icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.5;
}

@media screen and (max-width: 1100px) {
    .news_info h3 {
        font-size: 1rem;
        line-height: 1.4rem;
        max-height: calc(1 * 1.4 * 2rem);
    }
}

@media screen and (max-width: 640px) {
    .news_list {
        border-top: 1px dotted var(--site-off-white-color);
    }
    .news_list_item {
        height: 80px;
        padding: 0.4rem;
        border-bottom: 1px dotted var(--site-off-white-color);
        gap: 0.4rem;
    }

    .news_thumbnail {
        width: 25%;
    }

    .news_info {
        padding: 0;
        gap: 0.1rem;
    }

    .news_info p {
        font-size: 0.6rem;
    }

    .news_info h3 {
        font-size: 0.6rem;
        line-height: 0.9rem;
        max-height: calc(1 * 0.9 * 2);
    }

    .arrow_icon {
        width: 16px;
        height: 16px;
    }
}

/*---------------------------
旧
----------------------------*/
main #news_detail .inner {
    text-align: left;
}

@media screen and (max-width: 640px) {
    main #news_detail .inner {
        /*sp*/
        width: 90%;
    }
}

@media screen and (max-width: 640px) {
    main #news_detail .inner h2 {
        /*sp*/
        font-size: 1.2rem;
    }

    main #news .inner .row .col {
        padding: 0em;
        margin-bottom: 0.5rem;
    }

    main #news .inner .row .col .txt {
        width: 74%;
        font-size: 0.6rem;
        letter-spacing: 0px;
        line-height: 15px;
    }

    main #news .inner .row .col .txt h3 {
        width: 100%;
        overflow: initial;
        text-overflow: initial;
        white-space: initial;
    }

    main #news .inner .row .col img {
        width: 25%;
        height: 50px;
    }

    main #news .inner .row .col:nth-of-type(n + 5) {
        display: flex;
    }

    .pager ul li {
      width: 6%;
      text-align: center;
      border-right: none;
      border-bottom: none;
      list-style: none;
      display: inline-block;
      padding: 0px;
      margin: 0px;
      letter-spacing: normal;
  }
}

main #news_detail .inner .content {
    line-height: 1.6em;
}

main #news_detail .inner .content > h3 {
    padding: 1.5em 0;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.4em;
}

@media screen and (max-width: 640px) {
    main #news_detail .inner .content > h3 {
        /*sp*/
        font-size: 1rem;
    }
}

main #news_detail .inner .btn {
    margin-top: 2em;
    padding-top: 2em;
    text-align: center;
    border-top: 1px dotted #ccc;
}

main #news_detail .inner .btn a {
    display: inline-block;
}
/*# sourceMappingURL=news.css.map */
