/* =============================================
   css/static.css - プライバシーポリシー等の静的ページ
   ============================================= */

   .static-page .container { max-width: 800px; }

   .static-date {
     font-size: 12px;
     color: var(--mid-gray);
     margin-bottom: 32px;
     text-align: right;
   }
   
   .static-content {
     background: var(--white);
     border: 1px solid var(--light-gray);
     border-radius: 6px;
     padding: 52px 56px;
     box-shadow: var(--shadow);
   }
   
   .static-content > p {
     font-size: 14px;
     color: var(--text-mid);
     line-height: 1.9;
     margin-bottom: 28px;
   }
   
   .static-content h2 {
     font-family: var(--font-serif);
     font-size: 18px;
     color: var(--navy);
     font-weight: 600;
     margin: 36px 0 14px;
     padding-bottom: 8px;
     border-bottom: 1px solid var(--light-gray);
   }
   
   .static-content h2:first-of-type { margin-top: 0; }
   
   .static-content ul {
     padding-left: 20px;
     margin-bottom: 20px;
     display: flex;
     flex-direction: column;
     gap: 6px;
   }
   
   .static-content ul li {
     font-size: 14px;
     color: var(--text-mid);
     line-height: 1.8;
     list-style: disc;
     padding-left: 4px;
   }
   
   .static-contact-box {
     background: var(--off-white);
     border: 1px solid var(--light-gray);
     border-left: 4px solid var(--gold);
     padding: 20px 24px;
     border-radius: 0 4px 4px 0;
     margin-top: 16px;
   }
   
   .static-contact-box p {
     font-size: 13px;
     color: var(--text-mid);
     margin-bottom: 6px !important;
     line-height: 1.7;
   }
   
   .static-contact-box a { color: var(--navy-mid); text-decoration: underline; }
   
   @media (max-width: 640px) {
     .static-content { padding: 32px 24px; }
   }
   
   
   /* =============================================
      css/news.css - お知らせ・コラム
      ============================================= */
   
   .news-layout {
     display: grid;
     grid-template-columns: 1fr 280px;
     gap: 48px;
     align-items: start;
   }
   
   /* TABS */
   .news-tabs {
     display: flex;
     gap: 0;
     border-bottom: 2px solid var(--light-gray);
     margin-bottom: 32px;
     overflow-x: auto;
     scrollbar-width: none;
   }
   
   .news-tabs::-webkit-scrollbar { display: none; }
   
   .news-tab {
     padding: 12px 20px;
     background: none;
     border: none;
     font-size: 13px;
     font-weight: 500;
     color: var(--text-mid);
     cursor: pointer;
     border-bottom: 2px solid transparent;
     margin-bottom: -2px;
     transition: var(--transition);
     font-family: var(--font-sans);
     white-space: nowrap;
   }
   
   .news-tab:hover { color: var(--navy); }
   .news-tab.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 700; }
   
   /* NEWS LIST */
   .news-list {
     display: flex;
     flex-direction: column;
     gap: 0;
   }
   
   .news-item {
     border-bottom: 1px solid var(--light-gray);
     transition: background 0.15s ease;
   }
   
   .news-item.hidden { display: none; }
   
   .news-item-link {
     display: grid;
     grid-template-columns: 200px 1fr;
     gap: 24px;
     padding: 24px 0;
     align-items: start;
   }
   
   .news-item-link:hover .news-item-body h2 { color: var(--gold-dark); }
   
   .news-item-meta {
     display: flex;
     flex-direction: column;
     gap: 8px;
     padding-top: 3px;
   }
   
   .news-date {
     font-size: 13px;
     color: var(--mid-gray);
     font-weight: 500;
     letter-spacing: 0.04em;
   }
   
   .news-type-tag {
     display: inline-block;
     font-size: 11px;
     font-weight: 600;
     padding: 3px 10px;
     border-radius: 2px;
     letter-spacing: 0.05em;
     width: fit-content;
   }
   
   .news-type-tag.news    { background: #EBF5FF; color: #1A56A0; border: 1px solid #BFD9F7; }
   .news-type-tag.column  { background: #EBFAF2; color: #1A7A42; border: 1px solid #B5EDD1; }
   .news-type-tag.seminar { background: #FFF3EB; color: #A04A1A; border: 1px solid #F7CEB5; }
   
   .news-item-body h2 {
     font-family: var(--font-serif);
     font-size: 16px;
     color: var(--navy);
     font-weight: 600;
     line-height: 1.5;
     margin-bottom: 8px;
     transition: color 0.2s;
   }
   
   .news-item-body p {
     font-size: 13px;
     color: var(--text-mid);
     line-height: 1.8;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
   }
   
   /* PAGINATION */
   .news-pagination {
     display: flex;
     gap: 8px;
     justify-content: center;
     margin-top: 40px;
   }
   
   .page-btn {
     width: 40px;
     height: 40px;
     border: 1px solid var(--light-gray);
     background: var(--white);
     color: var(--text-mid);
     font-size: 14px;
     cursor: pointer;
     border-radius: var(--radius);
     transition: var(--transition);
     font-family: var(--font-sans);
   }
   
   .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
   .page-btn:hover:not(.active) { border-color: var(--gold); color: var(--navy); }
   .page-next { width: auto; padding: 0 16px; }
   
   /* SIDEBAR */
   .news-sidebar { position: sticky; top: 100px; }
   
   .sidebar-widget {
     background: var(--white);
     border: 1px solid var(--light-gray);
     border-radius: 6px;
     padding: 24px;
     margin-bottom: 24px;
   }
   
   .sidebar-widget h3 {
     font-size: 13px;
     font-weight: 700;
     color: var(--navy);
     letter-spacing: 0.05em;
     margin-bottom: 16px;
     padding-bottom: 10px;
     border-bottom: 2px solid var(--gold);
   }
   
   .sidebar-cat-list { display: flex; flex-direction: column; gap: 0; }
   
   .sidebar-cat-list li { border-bottom: 1px solid var(--light-gray); }
   .sidebar-cat-list li:last-child { border-bottom: none; }
   
   .sidebar-cat-list li a {
     display: flex;
     justify-content: space-between;
     padding: 10px 0;
     font-size: 13px;
     color: var(--text-mid);
   }
   
   .sidebar-cat-list li a:hover { color: var(--navy); }
   .sidebar-cat-list li a span { color: var(--mid-gray); }
   
   .sidebar-recent { display: flex; flex-direction: column; gap: 10px; }
   
   .sidebar-recent li a {
     font-size: 12px;
     color: var(--text-mid);
     line-height: 1.7;
     display: block;
   }
   
   .sidebar-recent li a:hover { color: var(--navy); }
   
   /* SIDEBAR CTA */
   .sidebar-cta {
     background: var(--navy);
     border-radius: 6px;
     padding: 28px 24px;
     text-align: center;
   }
   
   .sidebar-cta > p:first-child {
     font-size: 14px;
     color: rgba(255,255,255,0.8);
     line-height: 1.7;
     margin-bottom: 8px;
   }
   
   .sidebar-cta-free {
     font-size: 16px;
     font-weight: 700;
     color: var(--gold);
     margin-bottom: 16px;
   }
   
   .sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 16px; }
   
   .sidebar-cta-tel a {
     font-size: 18px;
     font-weight: 700;
     color: var(--white);
     letter-spacing: 0.04em;
   }
   
   .sidebar-cta-tel a:hover { color: var(--gold); }
   .sidebar-cta-hours { font-size: 11px; color: var(--mid-gray); margin-top: 4px; }
   
   /* RESPONSIVE */
   @media (max-width: 900px) {
     .news-layout { grid-template-columns: 1fr; }
     .news-sidebar { position: static; }
     .news-item-link { grid-template-columns: 1fr; gap: 12px; }
   }
   
   @media (max-width: 480px) {
     .news-item-link { padding: 18px 0; }
     .news-item-body h2 { font-size: 14px; }
   }