        :root {
            --primary-color: #2a3d31; 
            --accent-color: #c5a059;  
            --bg-base: #fdfaf6;       
            --white: #ffffff;
            --text-main: #333333;
            --text-sub: #555555;
            --line-color: #06c755;
        }

        html { scroll-behavior: smooth; }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Noto Serif JP', serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 2; /* 抜け感を出すために行間を広げる */
            letter-spacing: 0.05em; /* 視認性向上のために字間を少し広げる */
            overflow-x: hidden;
        }

        /* --- Common --- */
        .container { max-width: 1300px; margin: 0 auto; padding: 0 4%; }

        /* --- Header --- */
        header {
            padding: 20px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.98);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #eee;
            flex-wrap: wrap;
        }
        
        .logo { 
            font-family: 'Noto Serif JP', serif; 
            font-size: 1.6rem; 
            font-weight: 500; 
            color: var(--primary-color); 
            letter-spacing: 2px; 
            text-decoration: none;
        }
        
        .header-nav { display: flex; gap: 35px; }
        .header-nav a { 
            font-family: 'Noto Serif JP', serif; 
            text-decoration: none; 
            color: #222; 
            font-size: 1rem; 
            transition: 0.3s; 
            font-weight: 700; 
            letter-spacing: 0.05em;
        }
        .header-nav a:hover, .header-nav a.active { color: var(--accent-color); }

        .nav-right-btns { display: flex; align-items: center; gap: 15px; }
        .nav-btn { 
            font-family: 'Noto Serif JP', serif;
            text-decoration: none; 
            color: var(--primary-color); 
            background: transparent; 
            border: 1px solid #ddd;
            padding: 8px 18px; 
            font-size: 0.85rem; 
            font-weight: 500; 
            border-radius: 4px; 
            transition: 0.3s; 
            letter-spacing: 2px;
        }
        .nav-btn:hover { border-color: var(--primary-color); background: rgba(42, 61, 49, 0.05); }

        /* --- Breadcrumb --- */
        .breadcrumb {
            max-width: 1000px;
            margin: 40px auto 0;
            padding: 0 4%;
            font-size: 0.95rem;
            color: #888;
            font-family: 'Montserrat', 'Noto Serif JP', sans-serif;
        }
        .breadcrumb a {
            color: #888;
            text-decoration: none;
            transition: 0.3s;
        }
        .breadcrumb a:hover { color: var(--accent-color); }
        .breadcrumb span { margin: 0 8px; }

        /* --- Article Layout --- */
        .article-wrapper {
            max-width: 1000px; /* 記事が横に長くなりすぎないよう調整 */
            margin: 40px auto 120px;
            padding: 0 4%;
        }

        /* Article Header */
        .article-header {
            margin-bottom: 60px;
            text-align: center;
        }
        .a-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #888;
        }
        .a-cat {
            background: var(--white);
            color: var(--accent-color);
            border: 1px solid var(--accent-color);
            padding: 6px 20px;
            border-radius: 30px;
            font-weight: 700;
        }
        .a-title {
            font-size: 2.4rem;
            color: var(--primary-color);
            line-height: 1.5;
            margin-bottom: 30px;
            font-weight: 700;
            text-align: left;
        }
        .a-author {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 15px;
            margin-bottom: 50px;
            font-size: 1.05rem;
            color: var(--text-sub);
        }
        .a-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #eee;
        }
        .a-eyecatch {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            margin-bottom: 60px;
        }

        /* Article Content (H2, H3, p) */
        .article-content {
            background: var(--white);
            padding: 80px 70px;
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .article-content p {
            font-size: 1.15rem;
            line-height: 2.2;
            margin-bottom: 35px;
            color: var(--text-main);
        }

        /* H2 Design */
        .article-content h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 70px 0 40px;
            padding: 20px 25px;
            background: #fdfaf6;
            border-left: 6px solid var(--accent-color);
            font-weight: 700;
            border-radius: 0 4px 4px 0;
            line-height: 1.5;
            border-top: 1px solid #eaddce;
            border-right: 1px solid #eaddce;
            border-bottom: 1px solid #eaddce;
        }
        .article-content h2:first-child { margin-top: 0; }

        /* H3 Design */
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 60px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #eaddce;
            font-weight: 700;
            position: relative;
        }
        .article-content h3::before {
            content: '◆';
            color: var(--accent-color);
            margin-right: 12px;
            font-size: 1.3rem;
        }

        /* Decoration Elements */
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            margin: 40px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        }
        .article-content ul {
            background: #fdfaf6;
            padding: 35px 35px 35px 55px;
            margin: 40px 0;
            border: 1px solid #eaddce;
            border-radius: 6px;
        }
        .article-content li {
            font-size: 1.15rem;
            line-height: 2;
            margin-bottom: 15px;
            color: var(--text-main);
        }
        .article-content li:last-child { margin-bottom: 0; }
        
        .point-box {
            border: 2px solid var(--accent-color);
            padding: 40px 35px 35px;
            border-radius: 6px;
            margin: 60px 0;
            position: relative;
            background: var(--white);
        }
        .point-box-title {
            position: absolute;
            top: -16px;
            left: 30px;
            background: var(--white);
            padding: 0 20px;
            color: var(--accent-color);
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }

        /* --- Author Box --- */
        .author-box {
            display: flex;
            gap: 30px;
            background: #fdfaf6;
            padding: 50px;
            margin-top: 80px;
            border-radius: 8px;
            border: 1px solid #eaddce;
        }
        .author-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .author-info h4 {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
        }
        .author-info h5 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .author-info p {
            font-size: 1.05rem;
            color: var(--text-sub);
            line-height: 2;
            margin-bottom: 0;
        }

        /* --- Share Buttons --- */
        .share-area {
            text-align: center;
            margin-top: 80px;
            padding-top: 50px;
            border-top: 1px solid #eee;
        }
        .share-area p { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #888; margin-bottom: 20px; font-size: 1rem; letter-spacing: 3px; }
        .share-btns { display: flex; justify-content: center; gap: 20px; }
        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none;
            transition: 0.3s;
            font-size: 1.2rem;
            font-weight: bold;
            font-family: 'Montserrat', sans-serif;
        }
        .share-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
        .bg-line { background: #06c755; }
        .bg-fb { background: #1877f2; }
        .bg-x { background: #000000; }

        /* --- Related Articles --- */
        .related-section { margin-top: 120px; }
        .related-title { text-align: center; font-size: 1.6rem; color: var(--primary-color); margin-bottom: 50px; font-weight: 700; }
        .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
        .r-card { background: white; border-radius: 6px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); text-decoration: none; display: block; transition: 0.3s; }
        .r-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: rgba(197, 160, 89, 0.3); }
        .r-img { width: 100%; height: 220px; object-fit: cover; transition: 0.5s ease; }
        .r-card:hover .r-img { transform: scale(1.05); }
        .r-img-wrap { overflow: hidden; width: 100%; height: 220px; }
        .r-body { padding: 30px; }
        .r-cat { font-size: 0.85rem; color: var(--accent-color); font-weight: 700; border: 1px solid var(--accent-color); padding: 4px 15px; border-radius: 20px; display: inline-block; margin-bottom: 15px; background: rgba(197, 160, 89, 0.05); }
        .r-title { font-size: 1.2rem; color: var(--text-main); line-height: 1.6; font-weight: 700; transition: 0.3s; }
        .r-card:hover .r-title { color: var(--accent-color); }

        /* --- Floating CTA --- */
        .floating-cta { position: fixed; bottom: 35px; right: 35px; z-index: 2000; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.5s ease; }
        .floating-cta.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .circle-btn-wrap { position: relative; width: 145px; height: 145px; display: flex; justify-content: center; align-items: center; background: var(--white); border-radius: 50%; box-shadow: 0 10px 35px rgba(0,0,0,0.1); cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
        .circle-btn-wrap:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
        .spinning-text { position: absolute; width: 100%; height: 100%; animation: spin-text 25s linear infinite; }
        .spinning-text text { font-family: 'Noto Serif JP', serif; font-size: 10.5px; font-weight: 500; letter-spacing: 2px; fill: var(--accent-color); }
        @keyframes spin-text { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .center-content { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; color: var(--line-color); }
        .center-icon { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.8rem; line-height: 1; margin-bottom: 4px; }
        .center-text { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; }

        /* --- Footer CTA & Footer --- */
        .cta-box { background: var(--primary-color); color: white; padding: 100px 20px; text-align: center; margin-top: 120px; }
        .cta-btns { margin-top: 40px; display: flex; justify-content: center; gap: 20px; }
        .btn { padding: 20px 60px; border-radius: 40px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: 0.3s; border: none; cursor: pointer; letter-spacing: 1px; }
        .btn-line { background: var(--line-color); color: white; display: inline-block; box-shadow: 0 5px 20px rgba(6, 199, 85, 0.4); }
        .btn:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5); }

        footer { background: #fff; padding: 80px 4% 50px; text-align: center; border-top: 1px solid #eee; }
        .footer-nav { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
        .footer-nav a { font-family: 'Montserrat', sans-serif; text-decoration: none; color: #444; font-size: 1rem; transition: 0.3s; font-weight: 600; letter-spacing: 0.05em; }
        .footer-nav a:hover { color: var(--accent-color); }
        .footer-copy { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: #999; letter-spacing: 2px; margin-top: 30px; }

        @media (max-width: 1024px) { .header-nav { display: none; } }
        @media (max-width: 900px) {
            .article-content { padding: 40px 30px; }
            .a-title { font-size: 2rem; }
            .article-content h2 { font-size: 1.5rem; padding: 15px 20px; }
            .article-content h3 { font-size: 1.35rem; }
            .author-box { flex-direction: column; align-items: center; text-align: center; padding: 40px 30px; }
            .related-grid { grid-template-columns: 1fr; }
            .floating-cta { bottom: 25px; right: 25px; }
            .circle-btn-wrap { width: 120px; height: 120px; }
            .spinning-text text { font-size: 10px; }
            .center-icon { font-size: 1.5rem; }
            .center-text { font-size: 0.7rem; }
            .cta-btns { flex-direction: column; }
        }

        @media (max-width: 768px) {
            .container,
            .breadcrumb,
            .article-wrapper { padding-left: 15px; padding-right: 15px; }
            header { flex-wrap: nowrap; gap: 10px; padding-left: 15px; padding-right: 15px; }
            .logo { flex: 0 1 auto; font-size: 1.25rem; letter-spacing: 1px; white-space: nowrap; }
            .nav-right-btns { flex: 0 0 auto; gap: 0; }
            .nav-btn { padding: 7px 10px; font-size: 0.78rem; letter-spacing: 0.08em; white-space: nowrap; }
            .article-content { padding: 35px 20px; }
            .article-content h2 { padding-left: 15px; padding-right: 15px; }
            .article-content ul { padding: 30px 20px 30px 35px; }
            .point-box,
            .author-box,
            .r-body { padding-left: 20px; padding-right: 20px; }
            .btn,
            .btn-line { padding-left: 28px; padding-right: 28px; white-space: nowrap; }
            .floating-cta { right: 14px; bottom: 14px; }
        }
