@charset "utf-8";
/* CSS Document */

       main{ position: relative; padding-top:  8rem;}
        @media (max-width: 768px) {main{ position: relative; padding-top: 5rem;!important}}

        /* FV */
         .news-fv {
            /* 添付画像F59EEF6C-4EB9-44C0-A308-0BF6F5574E97.jpgを参考に作成 */
            background-image: url("../images/news-page-fv-pc.webp"); /* 背景画像プレースホルダー */
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
			 top:0.2rem;
        }
		
		@media screen and (max-width: 736px){
        .news-fv {
            background-image: url("../images/news-page-fv-sp.webp");
        }}		
		
        .news-fv::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }
        .news-fv-en {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: 0.05em;
            position: relative;
            z-index: 10;
        }
        .news-fv-jp {
            font-size: 1.25rem;
            color: #fff;
            margin-top: 0.5rem;
            position: relative;
            z-index: 10;
            text-align: center;
        }
        @media (max-width: 767px) {
            .news-fv { height: 250px; }
            .news-fv-en { font-size: 3rem; line-height: 0.7;}
        }
		

        /* ニュースカード */
		
		.news-wrap{
			background-color: #e7e5e0;
		}
        .news-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .news-thumb {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background-color: #eee;
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .news-card:hover .news-thumb img {
            transform: scale(1.05);
        }
        .news-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.8rem;
        }
        .news-date { color: #999; font-weight: 500; }
        .news-category {
            background: #a67c34;
            color: #fff;
            padding: 0.1rem 0.6rem;
            border-radius: 2px;
            font-size: 0.7rem;
            font-weight: 700;
        }
        .news-title {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.5;
            color: #433f37;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
		

        /* もっと見るボタン */
        .more-btn-container {
            display: flex;
            justify-content: center;
            margin-top: 4rem;
        }
        .more-btn {
            display: inline-block;
            padding: 1rem 4rem;
            border: 1px solid #433f37;
            color: #433f37;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
            background: #fff;
            text-align: center;
            min-width: 240px;
        }
        .more-btn:hover {
            background: #433f37;
            color: #fff;
        }
        
        /* 非表示用クラス */
        .news-item-hidden {
            display: none;
        }

        /* アニメーション */
        .fade-in-section { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .fade-in-section.is-visible { opacity: 1; transform: translateY(0); }