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

  /* FV */


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

         .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;}
        }
		
      /* 記事詳細エリア */
        .article-container {
            padding: 7rem;
            max-width: 1000px;
            margin: 3rem auto;
			background: #fff;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        .article-date { color: #999; font-weight: 500; }
        .article-category {
            background: #a67c34;
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 2px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .article-title {
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 768px) {
            .article-container { padding-top: 50px; }
            .article-title { font-size: 1.5rem; }
        }

        .article-image {
            width: 100%;
            border-radius: 4px;
            margin: 0 auto 0.5rem;
			max-width: 700px;
            /*box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
        }
        @media (max-width: 768px) {
            .article-image { margin-bottom: 0; }
        }	
		
        
        .article-body {
            line-height: 1.8;
            font-size: 1rem;
            color: #000;
            white-space: pre-wrap;
        }
		
        @media (max-width: 768px) {
            .article-body {  font-size: 0.9rem; line-height: 2; }
        }		
		
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 4px solid #a67c34;
        }

        /* ボタン */
        .back-btn {
            display: inline-flex;
            align-items: center;
            margin-top: 5rem;
            padding: 1rem 4rem;
            border: 1px solid #433f37;
            border-radius: 9999px;
            font-weight: 700;
            transition: all 0.3s;
            color: #433f37;
        }
        .back-btn:hover {
            background-color: #433f37;
            color: #fff;
        }

        /* 他のニュースセクション */
        .other-news {
            background-color: #fcfcfc;
            padding: 80px 0;
            border-top: 1px solid #eee;
        }
        .other-news-title {
            text-align: center;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            /*letter-spacing: 0.1em;*/
        }
        .news-card {
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            transition: all 0.3s;
        }
        .news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
        .news-thumb { aspect-ratio: 16/9; background: #eee; overflow: hidden; }
        .news-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .news-info { padding: 1.25rem; }
        .news-meta-sm { font-size: 0.75rem; color: #999; margin-bottom: 0.5rem; }
        .news-title-sm { font-size: 1rem; font-weight: 700; line-height: 1.5; color: #433f37; }
