/*ニュース本体
---------------------------------------------------------------------------*/
/* =========================================================
   NEWS
========================================================= */

.news{
    background:#fff;
    padding:60px 0 100px;
}

.news__inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* =========================================================
   FILTER
========================================================= */

.news-filter{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.news-filter__item{
    display:flex;
    flex-direction:column;
    min-width:170px;
}

.news-filter__item label{
    font-size:.85rem;
    color:#666;
    margin-bottom:8px;
    font-weight:600;
}

.news-filter select{
    width:100%;
    height:46px;
    padding:0 15px;
    border:1px solid #d8dce5;
    border-radius:8px;
    background:#fff;
    font-size:.95rem;
    cursor:pointer;
    transition:.3s;
}

.news-filter select:focus{
    outline:none;
    border-color:#0d6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,.15);
}

/* =========================================================
   NEWS LIST
========================================================= */

.news-list{
    border-top:1px solid #dcdcdc;
}

/* =========================================================
   NEWS ITEM
========================================================= */

.news-item{
    display:grid;
    grid-template-columns:
        110px
        90px
        minmax(0,1fr)
        55px
        120px;
    align-items:center;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid #ececec;
    color:#222;
    text-decoration:none;
    transition:.25s;
}

.news-item:hover{
    background:#fafcff;
}

.news-item:hover .news-item__title{
    color:#0d6efd;
}

.news-item__date{
    font-size:.95rem;
    color:#666;
    white-space:nowrap;
}

.news-item__category{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:auto;
    min-width:0;
    height:24px;
    padding:0 10px;
    background:#fff;
    border-radius:4px;
    font-size:.75rem;
    font-weight:600;
    line-height:1;
    white-space:nowrap;
}

/* カテゴリーカラー */

.news-item__category.category-news{
    color:#ff8c00;
    border:1px solid #ff8c00;
}

.news-item__category.event{
    color:#28a745;
    border:1px solid #28a745;
}

.news-item__category.info{
    color:#0d6efd;
    border:1px solid #0d6efd;
}

.news-item__title{
    font-size:15px;
    line-height:1.7;
    transition:.25s;
    word-break:break-word;
}

.news-item__new{
    display:flex;
    justify-content:center;
    align-items:center;
    width:52px;
    height:24px;
    background:#e60023;
    color:#fff;
    border-radius:999px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.08em;
}

/* =========================================================
   PDF
========================================================= */

.news-item__pdf{
    display:inline-flex;
    align-items:center;
    justify-content:flex-end;
    gap:6px;
    font-size:.88rem;
    font-weight:600;
    color:#d62828;
    white-space:nowrap;
}

.news-item__pdf i{
    font-size:1.15rem;
}

.news-item:hover .news-item__pdf{
    color:#b51d1d;
}

/* PDFが無い場合 */

.news-item__pdf:empty{
    display:none;
}

/* =========================================================
   PAGINATION
========================================================= */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:60px;
    flex-wrap:wrap;
}

.pagination__button,
.pagination__number{
    width:42px;
    height:42px;
    border:1px solid #d8dce5;
    border-radius:8px;
    background:#fff;
    color:#333;
    font-size:.95rem;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.pagination__numbers{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.pagination__button:hover,
.pagination__number:hover{
    background:#0d6efd;
    border-color:#0d6efd;
    color:#fff;
}

.pagination__number.active{
    background:#0d6efd;
    border-color:#0d6efd;
    color:#fff;
    pointer-events:none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:1024px){

.news{
    padding:70px 0 90px;
}

.news__inner{
    padding:0 18px;
}

.news-item{
    grid-template-columns:
        120px
        95px
        minmax(0,1fr)
        55px
        120px;
    gap:16px;
}

.news-item__title{
    font-size:.95rem;
}

.news-item__pdf{
    font-size:.82rem;
}

.news-filter{
    gap:15px;
}

.news-filter__item{
    min-width:150px;
}

}

/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width:768px){

.news{
    padding:60px 0 70px;
}

.news__title{
    font-size:1.8rem;
}

.news-filter{
    flex-direction:column;
    align-items:stretch;
    gap:15px;
    margin-bottom:35px;
}

.news-filter__item{
    width:100%;
    min-width:0;
}

.news-filter select{
    height:44px;
}

/* ---------- NEWS ITEM ---------- */

.news-item{
    display:grid;
    grid-template-columns:auto 1fr auto;
    grid-template-areas:
        "date category badge"
        "title title title"
        "pdf pdf pdf";
    align-items:center;
    gap:8px;
    padding:16px 0;
}

.news-item__date{
    grid-area:date;
    font-size:.82rem;
}

.news-item__category{
    justify-self:start;
    width:42px;
    min-width:62px;
    height:22px;
    padding:0;
    font-size:.65rem;
    line-height:1;
    white-space:nowrap;
}

.news-item__new{
    grid-area:badge;
    width:44px;
    height:21px;
    font-size:.65rem;
}

.news-item__title{
    grid-area:title;
    width:100%;
    font-size:.92rem;
    line-height:1.5;
    margin-top:2px;
}

.news-item__pdf{
    grid-area:pdf;
    font-size:.78rem;
    justify-content:flex-start;
}

.pagination{
    margin-top:45px;
    gap:6px;
}

.pagination__numbers{
    gap:6px;
}

.pagination__button,
.pagination__number{
    width:38px;
    height:38px;
    font-size:.9rem;
}

.news-item:hover{
    background:#fff;
}

.news-item:hover .news-item__title{
    color:#222;
}

.news-item:hover .news-item__pdf{
    color:#d62828;
}

}

/* =========================================================
   SMALL SMARTPHONE
========================================================= */

@media (max-width:480px){

.news__inner{
    padding:0 15px;
}

.news__title{
    font-size:1.6rem;
}

.news-item{
    gap:10px;
}

.news-item__title{
    font-size:.95rem;
}

.news-item__pdf{
    font-size:.8rem;
}

.pagination__button,
.pagination__number{
    width:34px;
    height:34px;
    font-size:.85rem;
}

}

/*ニュース(takatech.html用)
---------------------------------------------------------------------------*/

/*==================================================
HOME NEWS
==================================================*/

.home-news{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.home-news__inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/*==================================================
HEADER
==================================================*/

.home-news__head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:50px;
    padding-bottom:20px;
}

.home-news__title{
    position:relative;
}

.home-news__bg{
    position:absolute;
    left:-30px;
    top:-45px;
    font-size:7rem;
    font-weight:800;
    letter-spacing:.0.5em;
    color:#f3f5f8;
    line-height:1;
    user-select:none;
    pointer-events:none;
    white-space:nowrap;
    z-index:0;
}

.home-news__en{
    position:relative;
    z-index:1;
    margin:0;
    color:#005bac;
    font-size:3.2rem;
    font-weight:700;
    letter-spacing:.15em;
    line-height:1;
}

.home-news__jp{
    position:relative;
    z-index:1;
    margin-top:12px;
    font-size:1rem;
    font-weight:500;
    color:#666;
}

/*==================================================
READ MORE
==================================================*/

.home-news__more{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 30px;
    border:2px solid #005bac;
    border-radius:999px;
    color:#005bac;
    text-decoration:none;
    font-weight:700;
    letter-spacing:.08em;
    transition:.3s;
    white-space:nowrap;
}

.home-news__more i{
    transition:.3s;
}

.home-news__more:hover{
    background:#005bac;
    color:#fff;
}

.home-news__more:hover i{
    transform:translateX(6px);
}

/*==================================================
TABLET
==================================================*/

@media (max-width:1300px){

.home-news{
    padding:80px 0;
}

.home-news__bg{
    padding:0 20px;
    font-size:5.5rem;
    top:-35px;
}

.home-news__en{
    left:10px;
    font-size:3.0rem;
}

.home-news__more{
    left:10px;
    padding:13px 24px;
}

}

/*==================================================
SMART PHONE
==================================================*/

@media (max-width:768px){

.home-news{
    padding:70px 0;
}

.home-news__head{
    flex-direction:column;
    align-items:flex-start;
    gap:30px;
}

.home-news__bg{
    padding:0 5px;
    font-size:4rem;
    top:-22px;
    left:0;
}

.home-news__en{
    left:15px;
    font-size:2.8rem;
}

.home-news__jp{
    left:15px;
    margin-top:8px;
    font-size:.95rem;
}

.home-news__more{
    width:100%;
    justify-content:center;
}

.home-news__more:hover{
    background:#fff;
    color:#0d6efd;
}

.home-news__more:hover i{
    transform:none;
}

}

/*==================================================
SMALL SMART PHONE
==================================================*/

@media (max-width:480px){

.home-news__inner{
    padding:0 15px;
}

.home-news__bg{
    font-size:3.8rem;
}

.home-news__en{
    font-size:2.8rem;
}

.home-news__jp{
    font-size:.9rem;
}

.home-news__more{
    padding:12px 20px;
    font-size:.9rem;
}

}

/*ニュース内容ページ(見出し)
---------------------------------------------------------------------------*/
.heading-solid-box {
  margin: 30px;
  padding: 10px 0;
  color: #333333;
  background: #ffffff;
  border: 1px solid #333333;
  box-shadow: 4px 4px 0 #333333;

  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 768px) {
  .heading-solid-box {
    margin-top: 10px;
  }

  .heading-solid-box {
    font-size: clamp(12px, 3.5vw, 16px);
  }
}

/*ニュース内容ページ
---------------------------------------------------------------------------*/
/* =================================
   News Article
================================= */

.news_article {
    margin-top: 80px;
    padding: 50px 0 100px;
}

.news_article__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* =================================
   日付
================================= */

.news_article__meta {
    text-align: right;
}

.news_article__meta time {
    color: #666;
    font-size: 14px;
    letter-spacing: .08em;
}

/* =================================
   見出し
================================= */

.news_article__header {
    margin-top: 20px;
    padding-top: 40px;

    border-top: 1px solid #d8d8d8;
}

.news_article__title {
    margin: 0;

    color: #0b1830;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
}

/* =================================
   本文エリア
================================= */

.news_article__body {
    display: flex;
    align-items: flex-start;
    gap: 80px;

    margin-top: 60px;
}

/* 左：文章 */

.news_article__text {
    flex: 1;
}

.news_article__text p {
    margin: 0 0 30px;

    color: #444;
    font-size: 15px; /* PC時 */
    line-height: 2;
}

.news_article__text p:last-child {
    margin-bottom: 0;
}

/* 右：画像 */

.news_article__image {
    flex: 0 0 38%;
}

.news_article__image img {
    width: 100%;
    padding-bottom: 30px;
    display: block;
}

/* =================================
   Tablet
================================= */

@media screen and (max-width: 1100px) {

    .news_article {
        margin-top: 10px;
    }

    .news_article__body {
        gap: 50px;
    }

}

/* =================================
   Smartphone
================================= */

@media screen and (max-width: 768px) {

    .news_article {
        margin-top: 10px;
        padding: 30px 0 70px;
    }

    .news_article__header {
        margin-top: 15px;
        padding-top: 30px;
    }

    .news_article__title {
        font-size: 20px;
    }

    .news_article__body {
        flex-direction: column;
        gap: 35px;

        margin-top: 40px;
    }

    /* スマホ時は画像を先に表示 */

    .news_article__image {
        order: -1;
        width: 100%;
    }

    .news_article__text p {
        margin-bottom: 24px;

        font-size: 13px; /* スマホ時 */
        line-height: 1.9;
    }

}

/* =========================================================
   NEWS BUTTON ACTION
========================================================= */

.news_button_action{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:900px;
    margin:60px auto 0;
}

.news_button_action__item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
    padding:0 30px;
    background:#fff;
    border:1px solid #d9dfe8;
    border-radius:6px;
    color:#222;
    font-size:1rem;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.news_button_action__item span{
    color:#0d6efd;
    font-size:1.2rem;
    transition:.25s;
}

.news_button_action__item:hover{
    opacity:.7;
}

.news_button_action__item:hover span{
    transform:translateX(5px);
}


/* =========================================================
   SMARTPHONE
========================================================= */

@media(max-width:768px){

.news_button_action{
    grid-template-columns:1fr;
    gap:12px;
    margin-top:40px;
}

.news_button_action__item{
    height:58px;
    padding:0 20px;
    font-size:.9rem;
}

.news_button_action__item span{
    font-size:1rem;
}

}