  /* ===== RESET & BASE ===== */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
    background: #f2f2f0;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.7;
  }

  /* ===== WF UTILITIES ===== */
  .wf-placeholder {
    background: #ddddd8;
    border: 1.5px dashed #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
  }
  .badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
  }
  .badge-cat {
    background: #1a1a1a;
    color: #fff;
  }
  .badge-sub {
    background: #e8e8e4;
    color: #555;
  }
  .note-ann {
    font-size: 12px;
    color: #555;
    border-left: 3px solid #ddd;
    padding-left: 10px;
    margin-top: 6px;
  }

  /* ===== LAYOUT ===== */
  .container { max-width: 1250px; margin: 0 auto; padding: 0 24px; }
  .page-section { padding: 32px 0; }

  /* ===== PAGE LABEL ===== */
  .page-label {
    font-size: 13px;
    font-weight: 600;
    background: #1a1a1a;
    color: #f0e060;
    padding: 6px 16px;
    margin: 0;
    letter-spacing: 1px;
  }

  /* ===== HEADER ===== */
  .site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0dc;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
  }
  @media (max-width:1180px) {
    .header-inner {
      justify-content: space-between;
    }
  }

  .logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1a1a1a;
    flex-shrink: 0;
    border-bottom: 3px solid #1a1a1a;
    padding-bottom: 1px;
    line-height: 1;
  }
  .logo span { font-size: 11px; display: block; font-weight: 400; color: #555; letter-spacing: 0; margin-top: 2px; }
  .header-nav {
    display: flex;
    gap: 0;
    flex: 1;
    align-self: stretch;
    align-items: stretch;
  }
  .header-nav a {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #444;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: color 0.15s;
    white-space: nowrap;
    line-height: 1.3;
  }
  .header-nav a .nav-sub {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-top: 2px;
  }
  .header-nav a.active .nav-sub,
  .header-nav a:hover .nav-sub { color: #666; }
  .header-nav a.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
  }
  .header-nav a:hover { color: #1a1a1a; }
  .header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
  }
  .btn-academy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 800;
    border: 2px solid #fff;
    border-radius: 5px;
    height: 36px;
    padding: 0 14px;
    line-height: 1;
    white-space: nowrap;
    transition: background .15s, color .15s;
    box-sizing: border-box;
  }
  .btn-academy-header:hover {
    background: #e8eaf0;
    border-color: #e8eaf0;
    color: #1a1a2e;
  }
  .btn-academy-sub {
    font-size: 10px;
    font-weight: 500;
    color: #555;
    margin-top: 2px;
    letter-spacing: 0;
  }
  @media (max-width:1100px){
.header-actions {
  display: none;
}
}
  .btn-login {
    font-size: 13px;
    font-weight: 700;
    height: 36px;
    padding: 0 14px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn-signup {
    font-size: 13px;
    font-weight: 700;
    height: 36px;
    padding: 0 14px;
    background: #fff;
    border: 2px solid #fff;
    color: #1a1a2e;
    cursor: pointer;
    border-radius: 5px;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== USER HEADER (logged in state) ===== */
  .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ccc;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #555;
    cursor: pointer;
  }
  .user-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
  }

  /* ===== HERO ===== */
  .hero {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0;
  }
  .hero-inner { display: flex; gap: 48px; align-items: center; }
  .hero-text { flex: 1; }
  .hero-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: #555;
    border: 1px solid #555;
    display: inline-block;
    padding: 3px 12px;
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: 16px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
  }
  .hero-search {
    display: flex;
    border: 2px solid #555;
    border-radius: 4px;
    overflow: hidden;
    max-width: 460px;
  }
  .hero-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: #2a2a2a;
    color: #eee;
    font-size: 15px;
    outline: none;
  }
  .hero-search input::placeholder { color: #555; }
  .hero-search button {
    padding: 12px 20px;
    background: #fff;
    border: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }
  .hero-feature { width: 380px; flex-shrink: 0; }
  .hero-feature .wf-placeholder { height: 220px; border-radius: 4px; }
  .hero-feature-caption { font-size: 15px; font-weight: 600; margin-top: 10px; line-height: 1.5; color: #eee; }
  .hero-feature-meta { font-size: 13px; color: #555; margin-top: 4px; }

  /* ===== TAG BAR ===== */
  .tagbar {
    background: #fff;
    border-bottom: 1px solid #e0e0dc;
    padding: 12px 0;
  }
  .tagbar-inner { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .tagbar-label { font-size: 13px; color: #555; font-weight: 600; margin-right: 4px; }
  .tag-pill {
    border: 1.5px solid #ccc;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    background: #fff;
    font-weight: 500;
  }
  .tag-pill.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
  }

  /* ===== CONTENT LAYOUT ===== */
  .content-wrap { display: flex; gap: 32px; padding: 32px 0; }
  .main-col { flex: 1; min-width: 0; }
  .side-col { width: 296px; flex-shrink: 0; }

  /* ===== SECTION HEADER ===== */
  .sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .sec-head h2 { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; }
  .sec-head a { font-size: 13px; color: #555; text-decoration: underline; font-weight: 500; }

  /* ===== FEATURED GRID ===== */
  .featured-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 20px; margin-bottom: 36px; }
  .feat-main { position: relative; }
  .feat-main .wf-placeholder { height: 300px; border-radius: 4px; }
  .feat-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.78));
    padding: 24px 20px 20px;
    border-radius: 0 0 4px 4px;
  }
  .feat-overlay .badge { font-size: 11px; margin-bottom: 8px; }
  .feat-overlay .title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .feat-overlay .meta { font-size: 13px; color: #ccc; }
  .feat-sub { display: flex; flex-direction: column; gap: 14px; }

  /* ===== ARTICLE CARDS ===== */
  .a-card {
    background: #fff;
    border: 1px solid #e4e4e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
  .a-card .thumb { }
  .a-card .thumb .wf-placeholder { height: 90px; border-radius: 0; }
  .a-card .body { padding: 12px 14px; }
  .a-card .body .badge { font-size: 11px; margin-bottom: 6px; }
  .a-card .body .title { font-size: 15px; font-weight: 600; line-height: 1.55; color: #1a1a1a; }
  .a-card .body .meta { font-size: 13px; color: #555; margin-top: 6px; }

  /* ===== ARTICLE LIST ===== */
  .a-list-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e4;
  }
  .a-list-item .thumb .wf-placeholder { width: 100px; height: 68px; border-radius: 3px; }
  .a-list-item .body { flex: 1; }
  .a-list-item .body .badge { font-size: 11px; margin-bottom: 6px; }
  .a-list-item .body .title { font-size: 16px; font-weight: 600; line-height: 1.55; color: #1a1a1a; }
  .a-list-item .body .meta { font-size: 13px; color: #555; margin-top: 5px; }

  /* ===== CARD GRID 3COL ===== */
  .card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .card-g {
    background: #fff;
    border: 1px solid #e4e4e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
  .card-g .img .wf-placeholder { height: 136px; border-radius: 0; }
  .card-g .body { padding: 14px 16px 16px; }
  .card-g .body .badge { font-size: 11px; margin-bottom: 8px; }
  .card-g .body .title { font-size: 16px; font-weight: 600; line-height: 1.55; color: #1a1a1a; }
  .card-g .body .meta { font-size: 13px; color: #555; margin-top: 6px; }
  .card-g .body .excerpt { font-size: 14px; color: #666; margin-top: 8px; line-height: 1.65; }

  /* ===== MEDIA SECTION (YouTube) ===== */
  .media-sec {
    background: #1a1a1a;
    border-radius: 4px;
    padding: 28px 28px 24px;
    margin-bottom: 36px;
  }
  .media-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .media-sec-head h2 { font-size: 18px; font-weight: 600; color: #fff; }
  .media-sec-head a { font-size: 13px; color: #555; text-decoration: underline; }
  .media-sec .sub { font-size: 14px; color: #555; margin-bottom: 18px; }
  .media-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
  .media-card { background: #2a2a2a; border-radius: 4px; overflow: hidden; }
  .media-card .media-img .wf-placeholder { height: 130px; background: #3a3a3a; border: none; border-radius: 0; }
  .media-card .media-body { padding: 12px 14px; }
  .media-card .media-body .title { font-size: 15px; font-weight: 600; color: #eee; line-height: 1.55; }
  .media-card .media-body .meta { font-size: 13px; color: #555; margin-top: 5px; }

  /* ===== NOTE SECTION ===== */
  /* ===== ACADEMY SECTION ===== */
  .academy-sec {
    background: linear-gradient(135deg, #0a1530 0%, #112060 50%, #091840 100%) !important;
    border: none !important;
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .academy-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(80,140,255,.22) 0%, transparent 60%);
    pointer-events: none;
  }
  .academy-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
  .academy-sec-head h2 { font-size: 18px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
  .academy-sec-head a { font-size: 13px; color: #93C5FD; text-decoration: underline; }
  .academy-sec-head a:hover { color: #fff; }
  .academy-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 2px;
    background: var(--blue);
    color: #fff;
    letter-spacing: 0.5px;
  }
  .academy-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
  .academy-tag {
    font-size: 12px;
    border: 1.5px solid #80b878;
    border-radius: 20px;
    padding: 3px 12px;
    color: #2a6030;
    background: #fff;
    font-weight: 500;
    cursor: pointer;
  }
  .academy-tag.active { background: var(--blue); color: #fff; border-color: var(--blue); }
  .academy-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .academy-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    transition: background .15s;
  }
  .academy-card:hover { background: rgba(255,255,255,.17); }
  .academy-card .ac-img .wf-placeholder { height: 120px; border-radius: 0; background: rgba(255,255,255,.08); border: none; }
  .academy-card .ac-body { padding: 14px 16px; }
  .academy-card .ac-level {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
  }
  .ac-level.basic { background: rgba(255,255,255,.2); color: #fff; }
  .ac-level.advanced { background: #60A5FA; color: #fff; }
  .ac-level.expert { background: linear-gradient(135deg,#1A1200,#2D2000); color: #D4AF37; }
  .academy-card .ac-title { font-size: 15px; font-weight: 600; line-height: 1.55; color: #fff; margin-bottom: 6px; }
  .academy-card .ac-desc { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 8px; }
  .academy-card .ac-meta { font-size: 12px; color: rgba(255,255,255,.5); }
  .academy-pickup {
    background: #fff;
    border: 1px solid #c0dab8;
    border-radius: 4px;
    padding: 14px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .academy-pickup .ap-icon {
    width: 48px;
    height: 48px;
    background: #d8ead4;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .academy-pickup .ap-body .ap-label { font-size: 11px; font-weight: 600; color: #2a8030; margin-bottom: 4px; }
  .academy-pickup .ap-body .ap-title { font-size: 15px; font-weight: 600; line-height: 1.5; color: #1a1a1a; }
  .academy-pickup .ap-body .ap-meta { font-size: 12px; color: #555; margin-top: 4px; }

  .note-sec {
    background: #fff9f0;
    border: 1.5px solid #f0d090;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 36px;
  }
  .note-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .note-sec-head h2 { font-size: 18px; font-weight: 600; color: var(--navy); }
  .note-sec-head a { font-size: 13px; color: var(--blue); text-decoration: underline; }

  /* ===== SIDEBAR ===== */
  .sb-block {
    background: #fff;
    border: 1px solid #e4e4e0;
    border-radius: 4px;
    padding: 18px 18px 16px;
    margin-bottom: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
  .sb-block h3 {
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
  .sb-list { list-style: none; }
  .sb-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
    line-height: 1.55;
  }
  .sb-list li::before { content: "›"; color: #bbb; flex-shrink: 0; margin-top: 1px; }
  .sb-list li:last-child { border-bottom: none; }

  /* ===== PERSONA BLOCKS ===== */
  .persona-item {
    background: #f4f6ff;
    border: 1px solid #c8d4f0;
    border-radius: 3px;
    padding: 10px 12px;
    margin-bottom: 8px;
  }
  .persona-item:last-child { margin-bottom: 0; }
  .persona-item .p-label {
    font-size: 11px;
    font-weight: 600;
    color: #3050a0;
    background: #d4dcf4;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 5px;
  }
  .persona-item .p-text { font-size: 13px; color: #444; line-height: 1.55; }

  /* ===== AUTH SIDEBAR (login/signup prompt) ===== */
  .auth-block {
    background: #1a1a1a;
    border-radius: 4px;
    padding: 20px 18px;
    margin-bottom: 18px;
    text-align: center;
  }
  .auth-block h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
  .auth-block p { font-size: 13px; color: #555; margin-bottom: 16px; line-height: 1.6; }
  .auth-block .btn-w {
    display: block;
    width: 100%;
    padding: 11px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 8px;
  }
  .auth-block .btn-line {
    display: block;
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #555;
    border-radius: 4px;
    cursor: pointer;
  }

  /* ===== FOOTER ===== */
  .site-footer { background: #1a1a1a; color: #aaa; padding: 48px 0 0; margin-top: 48px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-brand .f-logo { font-size: 20px; font-weight: 900; color: #fff; border-bottom: 3px solid #fff; display: inline-block; padding-bottom: 2px; margin-bottom: 12px; }
  .footer-brand p { font-size: 14px; line-height: 1.75; }
  .footer-brand .social-links { display: flex; gap: 8px; margin-top: 14px; }
  .footer-brand .social-links span { font-size: 12px; border: 1px solid #555; padding: 4px 10px; border-radius: 3px; color: #aaa; }
  .footer-col h4 { font-size: 13px; font-weight: 600; color: #ddd; margin-bottom: 12px; letter-spacing: 0.5px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { font-size: 14px; padding: 5px 0; border-bottom: 1px solid #2e2e2e; color: #555; }
  .footer-bottom {
    border-top: 1px solid #333;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
  }

  /* ===== ARTICLE DETAIL ===== */
  .art-wrap { display: flex; gap: 32px; padding: 28px 0; }
  .art-main { flex: 1; min-width: 0; }
  .breadcrumb { font-size: 13px; color: #555; margin-bottom: 18px; line-height: 1.5; }
  .breadcrumb a { color: inherit; text-decoration: none; }
  .breadcrumb span { margin: 0 6px; }
  .anchor-target { scroll-margin-top: 88px; }
  .card-link { display: block; color: inherit; text-decoration: none; }
  .card-link .card-g { height: 100%; }
  .generated-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* ===== サムネイル画像 共通 =====
     placeholder.svg を含む全サムネイルに object-fit:cover を適用
  ============================== */
  .feat-main img,
  .feat-sub img,
  .a-card img,
  .card-g .img img,
  .media-card .media-img img,
  .academy-card .ac-img img,
  .ac-thumb,
  .crosstalk-main img,
  .crosstalk-sub img,
  .single-thumb img,
  .post-thumbnail img,
  .wp-post-image {
    object-fit: cover;
    width: 100%;
  }
  .page-hidden { display: none !important; }
  body.page-routed .pd { display: none !important; }
  .academy-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .academy-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
  }
  .academy-lead {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    line-height: 1.85;
    margin-top: 10px;
  }
  .academy-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .academy-summary-item {
    border-left: 3px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.1);
    padding: 10px 12px;
    border-radius: 3px;
  }
  .academy-summary-item span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-bottom: 2px;
  }
  .academy-summary-item strong {
    font-size: 15px;
    color: #fff;
  }
  .academy-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
  }
  .academy-tier {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  }
  .academy-tier.is-current {
    border-color: rgba(7,27,58,0.36);
    background: linear-gradient(180deg,#EFF6FF 0%,#fff 56%);
  }
  .academy-tier-no {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .academy-tier h3 {
    font-size: 17px;
    color: var(--navy);
    margin: 0 0 8px;
  }
  .academy-tier p {
    font-size: 13px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 14px;
  }
  .academy-tier ul {
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: #64748b;
    line-height: 1.9;
  }
  .academy-tier li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--navy);
    margin-right: 8px;
    vertical-align: 2px;
  }
  .academy-section-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    margin-bottom: 12px;
  }
  .academy-progress {
    background: #F0F7FF;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
  }
  .academy-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
  }
  .academy-progress-title span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px;
  }
  .academy-progress-title strong {
    color: var(--navy);
    font-size: 16px;
  }
  .academy-next {
    font-size: 12px;
    color: #475569;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 5px 12px;
    white-space: nowrap;
  }
  .academy-progress-row {
    margin-bottom: 12px;
  }
  .academy-progress-row:last-child {
    margin-bottom: 0;
  }
  .academy-progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #475569;
    margin-bottom: 5px;
  }
  .academy-progress-meta strong {
    color: var(--navy);
  }
  .academy-progress-track {
    height: 7px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
  }
  .academy-progress-track span {
    display: block;
    height: 100%;
    background: var(--navy);
    border-radius: inherit;
  }
  .ac-level.basic {
    background: #EFF6FF !important;
    color: #1E448A !important;
    border: 1px solid rgba(30,68,138,.22) !important;
  }
  .ac-level.advanced {
    background: #60A5FA !important;
    color: #fff !important;
    border: none !important;
  }
  .ac-level.expert {
    background: #1E448A !important;
    color: #fff !important;
    border: none !important;
  }
  @media (max-width: 860px) {
    .academy-intro,
    .academy-tier-grid,
    .academy-summary {
      grid-template-columns: 1fr;
    }
    .academy-progress-head {
      align-items: flex-start;
      flex-direction: column;
    }
  }
  .art-header { margin-bottom: 24px; }
  .art-header .tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
  .art-header h1 { font-size: 28px; font-weight: 900; line-height: 1.5; margin-bottom: 14px; letter-spacing: -0.3px; }
  .art-header .meta-row { font-size: 14px; color: #555; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
  .art-header .meta-row .author { display: flex; align-items: center; gap: 8px; }
  .art-header .meta-row .avatar { width: 32px; height: 32px; border-radius: 50%; background: #ddd; border: 1px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #aaa; flex-shrink: 0; }
  .art-eyecatch .wf-placeholder { height: 340px; border-radius: 4px; margin-bottom: 28px; }
  .art-toc {
    background: #f6f6f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 18px 20px;
    margin-bottom: 28px;
  }
  .art-toc h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: #555; }
  .art-toc ol { padding-left: 20px; }
  .art-toc ol li { font-size: 14px; color: #555; padding: 4px 0; }
  .art-body { font-size: 16px; line-height: 1.85; }
  .art-body h2 {
    font-size: 22px;
    font-weight: 600;
    border-left: 5px solid #1a1a1a;
    padding-left: 14px;
    margin: 36px 0 14px;
    line-height: 1.45;
  }
  .art-body h3 {
    font-size: 19px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    margin: 26px 0 10px;
  }
  .art-body p { margin-bottom: 18px; color: #333; }
  .art-body .highlight {
    background: #f0f4ff;
    border-left: 5px solid #6080d0;
    padding: 16px 18px;
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    border-radius: 0 3px 3px 0;
    line-height: 1.75;
  }
  .art-body .checklist { list-style: none; padding: 0; margin: 14px 0; }
  .art-body .checklist li {
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px dotted #e0e0e0;
    color: #333;
    line-height: 1.65;
  }
  .art-body .checklist li::before { content: "□"; position: absolute; left: 0; color: #bbb; font-size: 15px; }
  .point-box {
    background: #fffbe8;
    border: 2px solid #dfc040;
    border-radius: 4px;
    padding: 16px 18px;
    margin: 22px 0;
  }
  .point-box h4 { font-size: 14px; font-weight: 600; color: #7a6000; margin-bottom: 8px; }
  .point-box ul { padding-left: 20px; font-size: 15px; color: #555; }
  .point-box ul li { padding: 4px 0; }
  .share-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 28px 0;
  }
  .share-bar span { font-size: 14px; color: #666; }
  .share-btn {
    border: 1.5px solid #ccc;
    padding: 7px 14px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    font-weight: 600;
  }

  /* ===== LOGIN PAGE ===== */
  .login-wrap {
    max-width: 440px;
    margin: 48px auto;
    background: #fff;
    border: 1px solid #e4e4e0;
    border-radius: 6px;
    padding: 40px 40px 36px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .login-wrap h1 { font-size: 24px; font-weight: 900; margin-bottom: 6px; text-align: center; }
  .login-wrap .sub { font-size: 14px; color: #555; text-align: center; margin-bottom: 28px; line-height: 1.6; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #333; }
  .form-group .f-input {
    width: 100%;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fafafa;
    outline: none;
  }
  .form-group .f-input::placeholder { color: #bbb; }
  .btn-login-lg {
    width: 100%;
    padding: 13px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 4px;
  }
  .login-opts {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-top: 14px;
  }
  .login-opts a { color: #555; text-decoration: underline; }
  .divider { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
  .divider::before, .divider::after { content:""; flex:1; height:1px; background:#e0e0dc; }
  .divider span { font-size: 13px; color: #aaa; }
  .btn-social {
    width: 100%;
    padding: 11px;
    background: #fff;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .signup-link { text-align: center; font-size: 14px; color: #555; margin-top: 20px; }
  .signup-link a { color: #1a1a1a; font-weight: 600; text-decoration: underline; }

  /* ===== CATEGORY PAGE ===== */
  .filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
  .filter-btn { border: 1.5px solid #ccc; padding: 7px 16px; font-size: 14px; cursor: pointer; background: #fff; color: #555; border-radius: 20px; font-weight: 500; }
  .filter-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; font-weight: 600; }
  .pagination { display: flex; gap: 4px; justify-content: center; margin-top: 28px; }
  .page-btn { width: 36px; height: 36px; border: 1.5px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; background: #fff; border-radius: 3px; font-weight: 600; }
  .page-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

  /* WP標準の the_posts_pagination() / paginate_links() が出力する
     <ul class="page-numbers"> を横並びの通常的なページャー見た目に */
  .pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination ul.page-numbers li { display: inline-flex; }
  .pagination ul.page-numbers a.page-numbers,
  .pagination ul.page-numbers span.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: all .15s;
  }
  .pagination ul.page-numbers a.page-numbers:hover {
    border-color: var(--navy, #1a1a1a);
    color: var(--navy, #1a1a1a);
  }
  .pagination ul.page-numbers span.page-numbers.current {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
  }
  .pagination ul.page-numbers span.page-numbers.dots {
    border: none;
    background: transparent;
  }

  /* ===== ABOUT PAGE ===== */
  .about-hero { background: #f0f0ec; border: 1px solid #ddd; border-radius: 4px; padding: 40px; text-align: center; margin-bottom: 36px; }
  .about-hero h1 { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
  .about-hero p { font-size: 16px; color: #555; max-width: 640px; margin: 0 auto; line-height: 1.8; }
  .editor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 36px; }
  .editor-card { background: #fff; border: 1px solid #e4e4e0; border-radius: 4px; padding: 18px 14px; text-align: center; }
  .editor-card .photo { width: 80px; height: 80px; border-radius: 50%; background: #ddd; border: 2px solid #bbb; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #aaa; }
  .editor-card .name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
  .editor-card .role { font-size: 12px; color: #888; border: 1px solid #ccc; display: inline-block; padding: 2px 8px; border-radius: 2px; margin-bottom: 10px; }
  .editor-card .bio { font-size: 13px; color: #555; text-align: left; line-height: 1.65; }
  .concept-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .concept-item { background: #f6f6f4; border: 1px solid #ddd; border-radius: 4px; padding: 18px; }
  .concept-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .concept-item p { font-size: 14px; color: #555; line-height: 1.75; }

  /* ===== PAGE DIVIDER ===== */
  hr.pd { border: none; border-top: 4px dashed #ccc; margin: 56px 0; }

  /* ===== BANNER TOP ===== */
  .wf-banner {
    background: #f0e060;
    padding: 10px 20px;
    font-size: 13px;
    color: #7a6000;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #d0c050;
  }

/* ============================================================
   REFINED DESIGN THEME
   Direction: white / navy / premium editorial media UI
   Inspired by modern business-news media layouts, without copying.
   ============================================================ */
:root{
  --navy:#071B3A;
  --navy-2:#0D2B57;
  --navy-3:#123D73;
  --blue:#1E448A;
  --sky:#EFF6FF;
  --sky-2:#faebd7;
  --line:#E4EAF2;
  --text:#0F172A;
  --muted:#475569;
  --muted-2:#64748B;
  --gold:#60A5FA;
  --paper:#FFFFFF;
  --radius:18px;
  --shadow:0 18px 48px rgba(7,27,58,.08);
  --shadow-sm:0 10px 28px rgba(7,27,58,.07);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:#fff !important;
  color:var(--text) !important;
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Sans","Yu Gothic","Noto Sans JP",sans-serif !important;
  letter-spacing:.01em;
}
a{color:inherit}
.container{padding:0 24px !important}
.wf-banner{
  background:linear-gradient(90deg,#071B3A,#123D73) !important;
  color:#fff !important;
  border-bottom:none !important;
  font-size:12px !important;
  letter-spacing:.06em !important;
}
.page-label{
  display:none !important;
}
hr.pd{
  border:none !important;
  border-top:1px solid var(--line) !important;
  margin:72px auto !important;
  max-width:1250px;
}

/* Header */
.site-header{
  background:linear-gradient(180deg,#071B3A 0%,#0D2B57 100%) !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 10px 30px rgba(7,27,58,.18) !important;
  backdrop-filter:blur(18px);
}
.header-inner{
  height:76px !important;
  gap:26px !important;
}
.logo{
  color:#fff !important;
  border-bottom:none !important;
  font-size:19px !important;
  letter-spacing:.06em !important;
  padding-left:16px !important;
  position:relative;
  line-height:1.08 !important;
}
.logo:before{
  content:"";
  position:absolute;
  left:0;
  top:1px;
  width:5px;
  height:32px;
  border-radius:999px;
  background:linear-gradient(180deg,#60A5FA,#fff);
}
.logo span{
  color:rgba(255,255,255,.65) !important;
  font-size:10px !important;
  margin-top:5px !important;
  letter-spacing:.08em !important;
}
.header-nav{
  gap:2px !important;
  align-items:center !important;
}
.header-nav a{
  color:rgba(255,255,255,.82) !important;
  border:1px solid transparent !important;
  border-radius:999px !important;
  padding:10px 11px !important;
  height:auto !important;
  font-weight:700 !important;
  transition:none;
}
.header-nav a .nav-sub{
  display:block !important;
  font-size:10px !important;
  font-weight:400 !important;
  color:#999 !important;
  line-height:1.2 !important;
  margin-top:1px !important;
}
.header-nav a.active{
  background:rgba(255,255,255,.12) !important;
  color:#fff !important;
}
.header-nav a:hover{
  background:rgba(96,165,250,.20) !important;
  color:#93C5FD !important;
  border:1px solid rgba(96,165,250,.50) !important;
}
.header-nav a[style*="ACADEMY"]{
  border:1px solid rgba(255,255,255,.28) !important;
  color:rgba(255,255,255,.85) !important;
}
.header-actions{
  gap:8px !important;
}
.btn-login,.btn-signup,.btn-login-lg{
  border-radius:999px !important;
  font-weight:800 !important;
  letter-spacing:.02em;
}
.btn-login{
  border:1px solid rgba(255,255,255,.32) !important;
  color:#fff !important;
  background:transparent !important;
  padding:10px 18px !important;
}
.btn-signup,.btn-login-lg{
  background:#fff !important;
  border-color:#fff !important;
  color:var(--navy) !important;
  padding:11px 20px !important;
  box-shadow:0 10px 28px rgba(0,0,0,.22);
}
.btn-login:hover,.btn-signup:hover,.btn-login-lg:hover{transform:translateY(-1px)}
.btn-login,.btn-signup{ text-decoration:none; display:inline-flex; align-items:center; }

/* ヘッダー：ログイン済みユーザー表示 */
.header-user{ display:flex; align-items:center; gap:10px; }
.header-user-avatar .pa-avatar img,
.header-user-avatar img{ border-radius:50%; display:block; }
.header-user-info{ display:flex; flex-direction:column; line-height:1.2; }
.header-user-name{ font-size:13px; font-weight:700; color:#fff; white-space:nowrap; }
.header-user-rank{ font-size:10px; color:rgba(255,255,255,.6); }
.btn-logout{ font-size:12px; color:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.3); border-radius:999px; padding:6px 14px; text-decoration:none; white-space:nowrap; transition:all .15s; }
.btn-logout:hover{ background:rgba(255,255,255,.15); color:#fff; }

/* Placeholder images */
.wf-placeholder{
  position:relative !important;
  overflow:hidden !important;
  border:0 !important;
  border-radius:var(--radius) !important;
  background:
    radial-gradient(circle at 20% 18%,rgba(30,68,138,.20),transparent 30%),
    radial-gradient(circle at 82% 70%,rgba(96,165,250,.18),transparent 34%),
    linear-gradient(135deg,#EAF1FA 0%,#F9FBFE 54%,#DFEAF7 100%) !important;
  color:rgba(7,27,58,.64) !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase;
}
.wf-placeholder:before{
  content:"";
  position:absolute;
  inset:auto -10% -28% -10%;
  height:58%;
  background:
    linear-gradient(135deg,rgba(7,27,58,.08),rgba(30,68,138,.10));
  transform:skewY(-8deg);
}
.wf-placeholder:after{
  content:"PUBLIC AGENDA";
  position:absolute;
  right:14px;
  bottom:12px;
  color:rgba(7,27,58,.26);
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
}
.hero .wf-placeholder,
.media-sec .wf-placeholder,
[style*="対談アイキャッチ"]{
  background:
    radial-gradient(circle at 24% 16%,rgba(255,255,255,.20),transparent 28%),
    radial-gradient(circle at 86% 74%,rgba(96,165,250,.22),transparent 32%),
    linear-gradient(135deg,#071B3A 0%,#123D73 58%,#1E448A 100%) !important;
  color:rgba(255,255,255,.72) !important;
}
.hero .wf-placeholder:after,
.media-sec .wf-placeholder:after,
[style*="対談アイキャッチ"]:after{color:rgba(255,255,255,.34)}

/* Hero */
.hero{
  background:
    linear-gradient(180deg,#FFFFFF 0%,#EFF6FF 100%) !important;
  color:var(--navy) !important;
  padding:76px 0 56px !important;
  border-bottom:1px solid var(--line);
}
.hero-inner{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(560px,720px) !important;
  gap:64px !important;
  align-items:center !important;
}
.hero-text{min-width:0}
.hero-tag{
  color:var(--blue) !important;
  border:1px solid rgba(30,68,138,.24) !important;
  background:#EFF6FF !important;
  border-radius:999px !important;
  padding:7px 14px !important;
  font-size:11px !important;
  font-weight:900 !important;
  letter-spacing:.14em !important;
}
.hero-title{
  font-size:54px !important;
  line-height:1.16 !important;
  letter-spacing:-.06em !important;
  color:var(--navy) !important;
  margin-bottom:20px !important;
  font-weight:900 !important;
}
.hero-desc{
  color:#475569 !important;
  font-size:17px !important;
  line-height:1.95 !important;
  max-width:680px !important;
}
.hero-search{
  max-width:680px !important;
  border:1px solid var(--line) !important;
  border-radius:999px !important;
  overflow:hidden !important;
  background:#fff !important;
  box-shadow:0 18px 48px rgba(7,27,58,.08);
}
.hero-search input{
  background:#fff !important;
  color:var(--text) !important;
  padding:16px 20px !important;
}
.hero-search input::placeholder{color:#94A3B8 !important}
.hero-search button{
  background:var(--navy) !important;
  color:#fff !important;
  padding:16px 28px !important;
  border-radius:999px !important;
  margin:4px !important;
  transition:background .2s ease !important;
}
.hero-search button:hover{
  background:#60A5FA !important;
}
.hero-feature{
  width:auto !important;
  background:#fff !important;
  border:1px solid var(--line);
  border-radius:24px;
  padding:14px 14px 18px;
  box-shadow:var(--shadow);
}
.hero-feature .wf-placeholder{
  height:250px !important;
  border-radius:18px !important;
}
.hero-feature-caption{
  color:var(--navy) !important;
  font-size:17px !important;
  line-height:1.65 !important;
  padding:4px 4px 0;
}
.hero-feature-meta{
  color:var(--muted) !important;
  padding:0 4px;
}

/* Tag bar */
.tagbar{
  background:#fff !important;
  border-bottom:1px solid var(--line) !important;
  padding:18px 0 !important;
}
.tagbar-wrap{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
}
.tagbar-inner{gap:7px !important;flex-wrap:wrap !important;}
/* タグバーのpill・サブページのfilter-btnを共通サイズに */
.tagbar .tag-pill,
.filter-btn{
  font-size:11px !important;
  padding:4px 11px !important;
}
.tagbar-label{
  color:var(--navy) !important;
  font-weight:900 !important;
  white-space:nowrap !important;
}
.tag-pill,.filter-btn{
  border:1px solid var(--line) !important;
  border-radius:999px !important;
  background:#fff !important;
  color:#475569 !important;
  padding:7px 15px !important;
  font-weight:600 !important;
  transition:all .2s ease;
}
.tag-pill.active,.filter-btn.active{
  background:#60A5FA !important;
  border-color:#60A5FA !important;
  color:#fff !important;
}
.tag-pill:hover,.filter-btn:hover{
  background:#60A5FA !important;
  border-color:#60A5FA !important;
  color:#fff !important;
}
.tagbar-search{
  display:flex !important;
  align-items:center !important;
  border:1px solid var(--line) !important;
  border-radius:999px !important;
  overflow:hidden !important;
  background:#fff !important;
  flex-shrink:0 !important;
  box-shadow:0 2px 8px rgba(7,27,58,.05) !important;
}
.tagbar-search input{
  border:none !important;
  outline:none !important;
  padding:8px 18px !important;
  font-size:14px !important;
  background:transparent !important;
  color:var(--text) !important;
  width:220px !important;
  font-family:inherit !important;
}
.tagbar-search input::placeholder{color:#94A3B8 !important}
.tagbar-search button{
  background:var(--navy) !important;
  color:#fff !important;
  border:none !important;
  padding:7px 18px !important;
  font-size:13px !important;
  font-weight:700 !important;
  cursor:pointer !important;
  border-radius:999px !important;
  margin:3px !important;
  font-family:inherit !important;
  letter-spacing:.04em !important;
  white-space:nowrap !important;
  transition:background .2s ease !important;
}
.tagbar-search button:hover{
  background:#60A5FA !important;
}

/* Layout */
.content-wrap,.art-wrap{
  gap:40px !important;
  padding:64px 0 48px !important;
}
/* 第二層ページ用ヘッダーバンド（公共・編集メディア風） */
.page-header{
  background:
    radial-gradient(circle at 88% 18%, rgba(96,165,250,.10) 0%, transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(7,27,58,.06) 0%, transparent 45%),
    linear-gradient(180deg,#EFF6FF 0%,#F0F7FF 100%);
  border-top:4px solid var(--navy);
  border-bottom:1px solid var(--line);
  padding:64px 0 56px;
  position:relative;
  overflow:hidden;
}
.page-header::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(7,27,58,.06) 1px, transparent 1px);
  background-size:18px 18px;
  background-position:0 0;
  opacity:.55;
  pointer-events:none;
  mask-image:linear-gradient(180deg, transparent 0%, #000 40%, transparent 100%);
  -webkit-mask-image:linear-gradient(180deg, transparent 0%, #000 40%, transparent 100%);
}
.ph-skyline{
  position:absolute;
  right:40px;
  bottom:0;
  width:520px;
  height:170px;
  pointer-events:none;
  z-index:0;
}
.ph-skyline img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:right bottom;
  opacity:.55;
  display:block;
}
@media (max-width:1180px){.ph-skyline{display:none}}
.page-header .container{position:relative;z-index:1}
.page-header .ph-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:11px;
  font-weight:900;
  color:var(--navy);
  letter-spacing:.22em;
  margin-bottom:18px;
}
.page-header .ph-eyebrow::before{
  content:"";
  width:36px;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--navy));
}
.page-header h1{
  font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif !important;
  font-size:40px !important;
  font-weight:700 !important;
  color:var(--navy) !important;
  letter-spacing:.01em;
  line-height:1.25 !important;
  margin:0 !important;
  position:relative;
  padding-left:18px;
}
.page-header h1::before{
  content:"";
  position:absolute;
  left:0;
  top:.18em;
  bottom:.18em;
  width:5px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--blue),var(--navy));
}
.page-header .ph-sub{
  font-size:14px;
  color:var(--muted);
  margin-top:16px;
  margin-left:23px;
  line-height:1.85;
  max-width:780px;
  letter-spacing:.02em;
}
.page-sub-wrap{
  padding:40px 0 48px;
}
.page-sub-wrap .breadcrumb{
  margin-bottom:28px !important;
  margin-top: 5px;
}
.main-col,.art-main{min-width:0}
.side-col{width:310px !important}
.sec-head{
  border-bottom:0 !important;
  padding-bottom:0 !important;
  margin-bottom:22px !important;
}
.sec-head h2{
  color:var(--navy) !important;
  font-size:22px !important;
  letter-spacing:-.04em !important;
  position:relative;
  padding-left:16px;
}
.sec-head h2:before{
  content:"";
  position:absolute;
  left:0;
  top:0.38em;
  width:5px;
  height:1.1em;
  border-radius:999px;
  background:var(--blue);
}
@media(max-width:768px){
  .sec-head h2:before{
  top: 9px;
}
}
.sec-head a,.media-sec-head a,.note-sec-head a{
  color:var(--blue) !important;
  text-decoration:none !important;
  font-weight:800 !important;
  white-space: nowrap;
}
.academy-sec-head a{
  color:#93C5FD !important;
  text-decoration:none !important;
  font-weight:800 !important;
  white-space: nowrap;
}
.academy-sec-head a:hover{ color:#fff !important; }

/* Cards */
.featured-grid{
  gap:22px !important;
  margin-bottom:44px !important;
}
.feat-main{
  border-radius:24px !important;
  overflow:hidden !important;
  box-shadow:var(--shadow) !important;
  background:#fff;
}
.feat-main .wf-placeholder{
  height:350px !important;
  border-radius:24px !important;
}
.feat-overlay{
  background:linear-gradient(180deg,rgba(7,27,58,0) 0%,rgba(7,27,58,.88) 88%) !important;
  padding:72px 26px 26px !important;
}
.feat-overlay .title{
  font-size:22px !important;
  line-height:1.55 !important;
}
.feat-overlay .meta{color:rgba(255,255,255,.72) !important}
.a-card,.card-g,.academy-card,.editor-card,.concept-item,.media-card{
  border:1px solid var(--line) !important;
  border-radius:20px !important;
  background:#fff !important;
  box-shadow:var(--shadow-sm) !important;
  overflow:hidden !important;
  transition:transform .2s ease, box-shadow .2s ease;
}
.a-card:hover,.card-g:hover,.academy-card:hover,.media-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 55px rgba(7,27,58,.12) !important;
}
.a-card .body,.card-g .body,.academy-card .ac-body,.media-card .media-body{
  padding:18px 18px 20px !important;
}
.a-card .body .title,.card-g .body .title,.academy-card .ac-title,.media-card .media-body .title{
  color:var(--navy) !important;
  font-weight:700 !important;
  letter-spacing:-.02em;
}
.meta,.a-card .body .meta,.card-g .body .meta,.academy-card .ac-meta,.media-card .media-body .meta{
  color:var(--muted) !important;
}
.card-g .body .excerpt{
  color:#475569 !important;
}
.badge,.badge-cat,.badge-sub{
  border-radius:999px !important;
  padding:5px 10px !important;
  background:#EFF6FF !important;
  color:var(--blue) !important;
  border:1px solid rgba(30,68,138,.18) !important;
  letter-spacing:.04em !important;
}
.a-list-item{
  border-bottom:1px solid var(--line) !important;
  padding:22px 0 !important;
}
  @media (max-width:780px){
   .a-list-item:first-child {
  margin-top: 0;
  padding-top: 0 !important;
}
  }

.a-list-item .body .title{
  color:var(--navy) !important;
  font-size:18px !important;
  font-weight:700 !important;
}
.card-grid-3{
  gap:22px !important;
}
.card-g .img .wf-placeholder,
.a-card .thumb .wf-placeholder,
.academy-card .ac-img .wf-placeholder{
  border-radius:0 !important;
}

/* AGENDA / media */
.media-sec{
  background:linear-gradient(180deg,#EFF6FF,#EFF6FF) !important;
  border:1px solid var(--line) !important;
  border-radius:26px !important;
  padding:34px !important;
  box-shadow:var(--shadow-sm);
}
.media-sec-head h2{
  color:var(--navy) !important;
  font-size:22px !important;
}
.media-sec .sub{color:#475569 !important}
.media-grid{gap:22px !important}
.media-card .media-img .wf-placeholder{
  border-radius:0 !important;
  height:180px !important;
}
.media-card .media-body .title{color:var(--navy) !important}

/* Crosstalk inline cards */
div[style*="grid-template-columns:1fr 1fr"][style*="gap:20px"]{
  gap:22px !important;
}
div[style*="grid-row:span 2"],
div[style*="対談アイキャッチ"][style]{
  border-color:var(--line) !important;
}
div[style*="grid-row:span 2"]{
  border-radius:24px !important;
  box-shadow:var(--shadow) !important;
}
div[style*="font-size:18px"][style*="font-weight:800"],
div[style*="font-size:15px"][style*="font-weight:800"]{
  color:var(--navy) !important;
}

/* Academy / note */
.note-sec{
  background:#fff !important;
  border:1px solid var(--line) !important;
  border-radius:26px !important;
  box-shadow:var(--shadow-sm) !important;
  padding:32px !important;
}
.academy-sec{
  background: linear-gradient(135deg, #0a1530 0%, #112060 50%, #091840 100%) !important;
  border: none !important;
  border-radius: 26px !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 32px !important;
}

  @media (max-width:780px){
    .academy-sec,.note-sec{
      padding:15px !important;
    }
  }

.note-sec-head h2{
  color:var(--navy) !important;
  font-size:22px !important;
}
.academy-sec-head h2{
  color:#fff !important;
  font-size:22px !important;
}
.academy-badge{background:var(--navy) !important}
.academy-tag{
  background:#fff !important;
  border:1px solid var(--line) !important;
  color:#475569 !important;
}
.academy-tag.active,.academy-tag:hover{
  background:var(--navy) !important;
  color:#fff !important;
  border-color:var(--navy) !important;
}
.academy-card{
  border-color:var(--line) !important;
}
.academy-card .ac-img .wf-placeholder{
  background:
    radial-gradient(circle at 18% 20%,rgba(30,68,138,.20),transparent 30%),
    linear-gradient(135deg,#EFF6FF,#F0F7FF) !important;
}
.academy-pickup{
  background:var(--sky) !important;
  border-color:var(--line) !important;
  border-radius:18px !important;
}
.note-sec .card-g{
  background:#fff !important;
  border-color:var(--line) !important;
}

/* Sidebar */
.sb-block,.auth-block{
  border:1px solid var(--line) !important;
  border-radius:22px !important;
  box-shadow:var(--shadow-sm) !important;
}
.sb-block{
  background:#fff !important;
  padding:22px !important;
}
.sb-block h3{
  border-bottom:1px solid var(--line) !important;
  color:var(--navy) !important;
  font-size:16px !important;
  padding-bottom:12px !important;
}
.sb-list li{
  border-bottom:1px solid #BFDBFE !important;
  color:#334155 !important;
}
.persona-item{
  background:#F7FAFF !important;
  border:1px solid var(--line) !important;
  border-radius:16px !important;
}
.persona-item .p-label{
  color:var(--blue) !important;
  background:#EFF6FF !important;
  border-radius:999px !important;
}
.auth-block{
  background:linear-gradient(135deg,var(--navy),var(--navy-2)) !important;
}
.auth-block .btn-w,.auth-block .btn-line{
  border-radius:999px !important;
}

/* Article detail */
.breadcrumb{color:var(--muted) !important}
.art-header h1{
  color:var(--navy) !important;
  font-size:38px !important;
  line-height:1.45 !important;
  letter-spacing:-.05em !important;
}
.art-header .meta-row{color:var(--muted) !important}
.art-eyecatch .wf-placeholder{
  height:420px !important;
  border-radius:26px !important;
}
.art-toc{
  background:#F7FAFF !important;
  border:1px solid var(--line) !important;
  border-radius:20px !important;
}
.art-body{
  color:#334155 !important;
}
.art-body h2{
  color:var(--navy) !important;
  border-left:0 !important;
  padding-left:0 !important;
  padding-top:22px;
  border-top:2px solid var(--navy) !important;
}
.art-body h3{
  color:var(--navy) !important;
  border-bottom:1px solid var(--line) !important;
}
.art-body p{color:#334155 !important}
.art-body .highlight{
  background:#F7FAFF !important;
  border-left:5px solid var(--blue) !important;
  border-radius:0 18px 18px 0 !important;
}
.point-box{
  background:#FFFBF2 !important;
  border:1px solid rgba(96,165,250,.45) !important;
  border-radius:18px !important;
}
.share-bar{
  border-color:var(--line) !important;
}
.share-btn{
  border:1px solid var(--line) !important;
  border-radius:999px !important;
  color:var(--navy) !important;
}

/* About/Login/Footer */
.about-hero{
  background:linear-gradient(180deg,#F7FAFF,#fff) !important;
  border:1px solid var(--line) !important;
  border-radius:26px !important;
}
.about-hero h1{color:var(--navy) !important}
.login-wrap{
  border:1px solid var(--line) !important;
  border-radius:26px !important;
  box-shadow:var(--shadow) !important;
}
.form-group .f-input{
  border:1px solid var(--line) !important;
  border-radius:14px !important;
  background:#F0F7FF !important;
}
.site-footer{
  background:var(--navy) !important;
  color:#CBD5E1 !important;
  margin-top:72px !important;
  position:relative;
}
  @media (max-width:780px){
    .site-footer {margin-top: 20px !important; }
  }
.footer-skyline{
  width:100%;
  display:block;
  margin-top:32px;
  text-align:center;
}
.footer-skyline img{
  width:100%;
  max-width:1280px;
  height:auto;
  margin:0 auto;
  opacity:.55;
  display:block;
}
.footer-brand .f-logo{
  border-bottom:none !important;
}
.footer-col h4{color:#fff !important}
.footer-col ul li{
  border-color:rgba(255,255,255,.10) !important;
  color:#CBD5E1 !important;
}
.footer-bottom{
  border-color:rgba(255,255,255,.12) !important;
  color:#94A3B8 !important;
}

/* Responsive */
@media (max-width:1100px){
  .header-nav{
    /* display:flex !important; */
    overflow-x:auto;
    flex-wrap:nowrap !important;
    gap:0 !important;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    display: none;
  }
  .header-nav::-webkit-scrollbar{display:none}
  .header-nav a{
    flex-shrink:0;
    padding:8px 12px !important;
    font-size:13px !important;
  }
  .hero-inner{grid-template-columns:1fr !important}
  .hero-feature{max-width:620px}
  .content-wrap,.art-wrap{display:block !important}
  .side-col{width:auto !important;margin-top:32px}
  /* footer */
  .footer-grid{grid-template-columns:1fr 1fr !important;gap:24px !important}
}
@media (max-width:780px){
  .container{padding:0 18px !important}
  .hero{padding:48px 0 38px !important}
  .hero-title{font-size:32px !important}
  .hero-desc{font-size:15px !important}
  .hero-search{border-radius:22px !important;display:block !important}
  .hero-search input,.hero-search button{width:100% !important;border-radius:18px !important}
  .featured-grid,.card-grid-3,.media-grid,.academy-card-grid,.editor-grid,.concept-grid{
    grid-template-columns:1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr"]{
    grid-template-columns:1fr !important;
  }
  .header-inner{height:64px !important;gap:12px !important}
  .header-nav a{padding:6px 10px !important;font-size:12px !important}
  .logo{font-size:16px !important;padding-left:12px !important}
  .logo:before{height:26px !important;width:4px !important}
  .logo span{display:none !important}
  .art-header h1{font-size:26px !important}
  .art-eyecatch .wf-placeholder{height:200px !important}
  .art-eyecatch img{height:200px !important}
  /* page header (下層共通) */
  .page-header{padding:36px 0 28px !important}
  .page-header h1{font-size:26px !important;padding-left:14px !important}
  .page-header h1::before{width:4px !important}
  .page-header .ph-eyebrow{font-size:10px !important;margin-bottom:12px !important}
  .page-header .ph-eyebrow::before{width:24px !important}
  .page-header .ph-sub{font-size:13px !important;margin-left:18px !important}
  .page-sub-wrap{padding:24px 20px 32px !important}
  /* tagbar */
  .tagbar{padding:12px 0 !important}
  .tagbar-wrap{flex-direction:column !important;align-items:flex-start !important;gap:12px !important}
  .tagbar-inner{flex-wrap:wrap !important;gap:6px !important}
  .tag-pill{font-size:12px !important;padding:6px 12px !important}
  .tagbar-label{font-size:12px !important}
  .tagbar-search input{width:100% !important}
  .tagbar-search{width:100% !important}
  /* footer */
  .footer-grid{grid-template-columns:1fr !important;gap:24px !important;padding:24px 0 0 !important}
  .footer-col h4{font-size:14px !important;margin-bottom:8px !important}
  .footer-col ul li{font-size:13px !important;padding:6px 0 !important}
  .footer-bottom{flex-direction:column !important;gap:8px !important;align-items:flex-start !important;font-size:11px !important;padding:14px 0 !important}
  /* AGENDA セクション：全幅・余白縮小・横並びリスト */
  .media-sec{margin:0 -18px 36px -18px !important;border-radius:0 !important;padding:20px 18px !important;}

    .feat-sub > a > div:first-child img {
        height: 150px !important;
    }

  /* note セクション：全幅・枠なし */
  .note-sec{margin:0 -18px !important;border-radius:0 !important;border:none !important;box-shadow:none !important;padding:20px 18px !important;}
  .media-card{display:flex !important;flex-direction:row !important;align-items:stretch !important;overflow:hidden !important;}
  .media-card .media-img{order:2 !important;flex:0 0 110px !important;width:110px !important;min-width:110px !important;}
  .media-card .media-img img,.media-card .media-img .wf-placeholder{width:110px !important;height:100% !important;min-height:90px !important;object-fit:cover !important;}
  .media-card .media-body{order:1 !important;flex:1 !important;min-width:0 !important;padding:10px 10px !important;}
  .media-card .media-body .title{font-size:14px !important;-webkit-line-clamp:3 !important;}
  /* Crosstalk セクション：縦並び（grid-row:span 2 を無効化）・抜粋非表示・1記事目サムネイル高さ統一 */
  .crosstalk-grid > div[style*="grid-row:span 2"]{grid-row:unset !important;}
  .crosstalk-grid > div:first-child img{height:150px !important;}
  .ct-excerpt{display:none !important;}
  /* Report 一覧：スマホ横並びレイアウト */
  .report-card-list .card-g{display:flex !important;flex-direction:row !important;align-items:stretch !important;}
  .report-card-list .card-g .img{order:2 !important;flex:0 0 110px !important;width:110px !important;min-width:110px !important;}
  .report-card-list .card-g .img img,.report-card-list .card-g .img .wf-placeholder{width:110px !important;height:100% !important;min-height:90px !important;object-fit:cover !important;}
  .report-card-list .card-g .body{order:1 !important;flex:1 !important;min-width:0 !important;padding:10px 10px !important;}
  .report-card-list .card-g .body .title{font-size:14px !important;}
  .report-card-list .card-g .body .excerpt{display:none !important;}
}
@media (max-width:520px){
  .hero-title{font-size:28px !important;letter-spacing:-.04em !important}
  .page-header h1{font-size:22px !important}
  .header-nav a .nav-sub{display:none !important}
}

  /* MV パターン切替（フローティング） */
  .mv-pattern-toggle{
    position:fixed;
    bottom:24px;
    right:24px;
    z-index:999;
    background:rgba(7,27,58,.92);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.14);
    border-radius:999px;
    padding:6px 8px 6px 16px;
    box-shadow:0 12px 36px rgba(0,0,0,.32);
    display:flex;
    align-items:center;
    gap:12px;
  }
  .mv-pattern-label{
    font-size:10px;
    font-weight:900;
    letter-spacing:.22em;
    color:rgba(255,255,255,.6);
    white-space:nowrap;
  }
  .mv-pattern-tabs{
    display:inline-flex;
    gap:2px;
  }
  .mv-tab{
    background:transparent;
    border:none;
    padding:8px 14px;
    font-size:11px;
    font-weight: 600;
    letter-spacing:.08em;
    color:rgba(255,255,255,.65);
    cursor:pointer;
    border-radius:999px;
    transition:all .2s;
    font-family:inherit;
  }
  .mv-tab:hover{color:#fff}
  .mv-tab.active{
    background:#fff;
    color:var(--navy);
  }
  @media (max-width:780px){
    .mv-pattern-toggle{
      bottom:16px;
      right:16px;
      padding:4px 8px 4px 14px;
    }
    .mv-pattern-label{display:none}
    .mv-tab{font-size:10px;padding:6px 10px}
  }

  /* MV パターン2: マガジンカバー型（Pattern 1と同じテキストでビジュアルだけ変更） */
  .hero-v2{
    position:relative;
    overflow:hidden;
    background:#131929;
    border-bottom:1px solid rgba(96,165,250,.25);
  }
  .hero-v2-bg{position:absolute;inset:0;z-index:0}
  .hero-v2-bg img{
    width:100%;height:100%;
    object-fit:cover;object-position:center 30%;
    opacity:.10;
    mix-blend-mode:luminosity;
  }
  .hero-v2-overlay{
    position:absolute;inset:0;
    background:
      radial-gradient(ellipse 70% 60% at 10% 80%, rgba(96,165,250,.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 90% 10%, rgba(30,68,138,.08) 0%, transparent 50%);
    z-index:1;
  }
  .hero-v2 .container{
    position:relative;z-index:2;
    padding-top:128px;padding-bottom:136px;
    color:#fff;
    text-align:center;
  }
  .hero-v2-eyebrow{
    font-size:11px;font-weight:500;
    letter-spacing:.22em;text-transform:uppercase;
    color:rgba(255,255,255,.38);
    margin-bottom:96px;
  }
  .hero-v2-eyebrow span{color:rgba(96,165,250,.70);margin:0 10px;}
  .hero-v2-brand{
    display:flex;align-items:center;justify-content:center;gap:32px;
    margin-bottom:44px;
  }
  .hero-v2-logo-box{
    width:96px;height:96px;flex-shrink:0;
    border:2px solid rgba(255,255,255,.85);
    display:flex;align-items:center;justify-content:center;
  }
  .hero-v2-brand-name{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',Georgia,serif;
    font-size:68px;font-weight:700;
    color:#fff;letter-spacing:.01em;line-height:1;
  }
  .hero-v2-rule{
    width:220px;height:1.5px;
    background:linear-gradient(90deg,transparent,#60A5FA 50%,transparent 100%);
    margin:0 auto 44px;
  }
  .hero-v2-grid{
    display:grid;grid-template-columns:1fr;
    max-width:880px;
    margin:0 auto;
  }
  .hero-v2-text{min-width:0}
  .hero-v2-title{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',Georgia,serif;
    font-size:32px;font-weight:400;
    line-height:1.28;letter-spacing:.14em;
    color:#fff;margin-bottom:28px;
    text-shadow:0 2px 32px rgba(0,0,0,.4);
  }
  .hero-v2-desc{
    font-size:16px;line-height:1.9;
    color:rgba(255,255,255,.72);
    max-width:680px;margin:0 auto 56px;
    letter-spacing:.03em;
  }
  .hero-v2-search{
    display:flex;max-width:580px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    border-radius:4px;overflow:hidden;padding:4px;
  }
  .hero-v2-search input{
    flex:1;background:transparent;border:none;outline:none;
    color:#fff;padding:13px 20px;font-size:15px;font-family:inherit;
  }
  .hero-v2-search input::placeholder{color:rgba(255,255,255,.38)}
  .hero-v2-search button{
    background:#60A5FA;color:#fff;border:none;
    border-radius:2px;padding:0 28px;
    font-size:14px;font-weight:700;cursor:pointer;
    font-family:inherit;letter-spacing:.06em;
    transition:background .2s;
  }
  .hero-v2-search button:hover{background:#a07c38}
  .hero-v2-footer{
    position:absolute;bottom:0;left:0;right:0;z-index:3;
    border-top:1px solid rgba(255,255,255,.08);
    padding:14px 0;
  }
  .hero-v2-footer-inner{
    max-width:1640px;margin:0 auto;padding:0 40px;
    display:flex;justify-content:center;align-items:center;
  }
  .hero-v2-footer-left{
    font-size:12px;letter-spacing:.08em;
    color:rgba(255,255,255,.3);
  }
  .hero-v2-footer-right{
    font-size:12px;font-style:italic;letter-spacing:.18em;
    color:#60A5FA;font-weight:600;
  }
  /* MV パターン3: 薄水色 × ネイビーの爽やかなエディトリアル */
  .hero-v3{
    position:relative;
    overflow:hidden;
    border-bottom:1px solid #D5E2EF;
    background:#E5EEF8;
  }
  .hero-v3-bg{position:absolute;inset:0;z-index:0}
  .hero-v3-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 30%;
    opacity:.14;
    filter:saturate(.7);
  }
  .hero-v3-overlay{
    position:absolute;
    inset:0;
    background:
      radial-gradient(circle at 88% 18%, rgba(96,165,250,.16) 0%, transparent 42%),
      radial-gradient(circle at 12% 92%, rgba(7,27,58,.06) 0%, transparent 38%),
      linear-gradient(115deg, rgba(229,238,248,.94) 0%, rgba(238,244,251,.82) 50%, rgba(212,228,243,.6) 100%);
    z-index:1;
  }
  .hero-v3 .container{
    position:relative;
    z-index:2;
    padding-top:88px;
    padding-bottom:88px;
  }
  .hero-v3-grid{
    display:grid;
    grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
    gap:clamp(32px,4vw,64px);
    align-items:center;
  }
  .hero-v3-text{min-width:0}
  .hero-v3-tag{
    display:inline-flex;
    align-items:center;
    gap:14px;
    font-size:11px;
    font-weight:900;
    color:var(--blue);
    letter-spacing:.24em;
    margin-bottom:28px;
  }
  .hero-v3-tag::before{
    content:"";
    width:48px;
    height:1.5px;
    background:linear-gradient(90deg,var(--blue),rgba(30,68,138,0));
  }
  .hero-v3-title{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;
    font-size:clamp(36px,3.5vw + 12px,60px);
    font-weight:700;
    line-height:1.22;
    letter-spacing:.01em;
    color:var(--navy);
    margin-bottom:28px;
  }
  .hero-v3-desc{
    font-size:17px;
    line-height:2;
    color:#475569;
    max-width:720px;
    margin-bottom:36px;
  }
  .hero-v3-search{
    display:flex;
    max-width:680px;
    background:#fff;
    border:1px solid #BFDBFE;
    border-radius:999px;
    overflow:hidden;
    padding:4px;
    box-shadow:0 12px 28px rgba(7,27,58,.08);
  }
  .hero-v3-search input{
    flex:1;
    background:transparent;
    border:none;
    outline:none;
    color:var(--navy);
    padding:14px 22px;
    font-size:15px;
    font-family:inherit;
  }
  .hero-v3-search input::placeholder{color:#94A3B8}
  .hero-v3-search button{
    background:var(--navy);
    color:#fff;
    border:none;
    border-radius:999px;
    padding:0 28px;
    font-size:14px;
    font-weight: 600;
    cursor:pointer;
    font-family:inherit;
    letter-spacing:.04em;
  }
  .hero-v3-feature-card{
    background:#fff;
    border:1px solid #D5E2EF;
    border-radius:24px;
    padding:14px 14px 22px;
    margin:28px 0;
    box-shadow:0 24px 60px rgba(7,27,58,.10);
    position:relative;
  }
  .hero-v3-feature-card::before{
    content:"";
    position:absolute;
    top:-1px;
    left:24px;
    right:24px;
    height:3px;
    background:linear-gradient(90deg,var(--blue),rgba(30,68,138,0));
    border-radius:2px;
  }
  .hero-v3-feature-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:14px;
    display:block;
  }
  .hero-v3-feature-card .caption{
    color:var(--navy);
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;
    font-size:17px;
    font-weight:700;
    line-height:1.65;
    padding:18px 6px 0;
  }
  .hero-v3-feature-card .meta{
    color:#64748B;
    font-size:13px;
    margin-top:10px;
    padding:0 6px;
    letter-spacing:.04em;
  }
  @media (max-width:1100px){
    .hero-v3-grid{grid-template-columns:1fr;gap:40px}
    .hero-v3-feature-card{max-width:560px}
  }
  @media (max-width:780px){
    .hero-v3 .container{padding-top:56px;padding-bottom:56px}
    .hero-v3-grid{gap:10px}
    .hero-v3-title{font-size:30px;margin-bottom:20px}
    .hero-v3-desc{font-size:14px;line-height:1.85;margin-bottom:0px}
    .hero-v3-search{flex-direction:column;border-radius:14px;padding:6px}
    .hero-v3-search input,.hero-v3-search button{width:100%;border-radius:10px}
    .hero-v3-search button{padding:14px 0;margin-top:6px}
    .hero-v3-feature-card .caption{font-size:15px}
  }

  @media(max-width:1100px){
    .hero-v2-title{font-size:28px}
    .hero-v2-brand-name{font-size:52px}
    .hero-v2-logo-box{width:76px;height:76px}
  }
  @media(max-width:780px){
    .hero-v2 .container{padding-top:72px;padding-bottom:88px}
    .hero-v2-title{font-size:22px;letter-spacing:.10em;margin-bottom:20px}
    .hero-v2-brand-name{font-size:34px}
    .hero-v2-logo-box{width:54px;height:54px}
    .hero-v2-desc{font-size:14px;margin-bottom:36px}
    .hero-v2-search{border-radius:4px}
    .hero-v2-eyebrow{margin-bottom:56px}
    .hero-v2-rule{width:140px;margin-bottom:32px}
  }

  /* ============================================================
     PUBLIC SECTOR PRO THEME UPGRADE
     「公共のプロ」としての信頼感・堅牢性を高める上書きスタイル
     ============================================================ */
  :root {
    --radius: 4px;
    --shadow: 0 4px 12px rgba(7, 27, 58, 0.06);
    --shadow-sm: 0 2px 6px rgba(7, 27, 58, 0.04);
    --blue: #1E448A;
    --gold: #c8955a;
  }
  .hero-title, 
  .sec-head h2, 
  .art-header h1, 
  .feat-overlay .title {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif !important;
    letter-spacing: 0.02em !important;
    font-weight: 700 !important;
  }
  .hero-feature, .feat-main, .a-card, .card-g, .academy-card, .media-card,
  .hero-feature .wf-placeholder, .feat-main .wf-placeholder,
  .sb-block, .auth-block, .art-toc, .about-hero, .login-wrap, .concept-item, .editor-card,
  div[style*="grid-row:span 2"] {
    border-radius: var(--radius) !important;
  }
  .a-card .thumb .wf-placeholder, 
  .card-g .img .wf-placeholder, 
  .academy-card .ac-img .wf-placeholder,
  .art-eyecatch .wf-placeholder {
    border-radius: var(--radius) var(--radius) 0 0 !important;
  }
  .art-eyecatch .wf-placeholder {
    border-radius: var(--radius) !important;
  }
  .tag-pill, .filter-btn, .btn-login, .btn-signup, .btn-login-lg, .hero-tag,
  .hero-search, .hero-search input, .hero-search button {
    border-radius: var(--radius) !important;
  }
  .badge, .badge-cat, .badge-sub {
    border-radius: 2px !important;
  }
  .media-sec, .academy-sec, .note-sec {
    border-radius: 8px !important;
  }
  .site-header {
    backdrop-filter: none !important;
    background: linear-gradient(180deg,#071B3A 0%,#0D2B57 100%) !important;
    box-shadow: 0 10px 30px rgba(7,27,58,.18) !important;
  }
  .sec-head h2:before {
    width: 4px;
    height: 1em;
    border-radius: 2px;
  }

  /* === Crosstalk 動画ページ === */
  .video-hero{
    display:grid;
    grid-template-columns:minmax(0,1.3fr) minmax(360px,440px);
    gap:40px;
    margin-bottom:48px;
    align-items:stretch;
  }
  .video-hero-thumb{
    position:relative;
    aspect-ratio:16/9;
    border-radius:14px;
    overflow:hidden;
    background:#0F172A;
    cursor:pointer;
  }
  .video-hero-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    opacity:.92;
  }
  .video-hero-thumb::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:84px;height:84px;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    box-shadow:0 8px 28px rgba(0,0,0,.35);
  }
  .video-hero-thumb::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-30%,-50%);
    border-style:solid;
    border-width:14px 0 14px 22px;
    border-color:transparent transparent transparent var(--navy);
  }
  .video-duration{
    position:absolute;
    bottom:12px;
    right:12px;
    background:rgba(0,0,0,.78);
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:4px 10px;
    border-radius:4px;
    z-index:2;
    letter-spacing:.04em;
  }
  .video-hero-info{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:28px;
    box-shadow:var(--shadow-sm);
    display:flex;
    flex-direction:column;
  }
  .video-hero-eyebrow{
    font-size:11px;
    font-weight:900;
    color:var(--blue);
    letter-spacing:.18em;
    margin-bottom:14px;
  }
  .video-hero-title{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;
    font-size:21px;
    font-weight:700;
    color:var(--navy);
    line-height:1.55;
    margin-bottom:18px;
    letter-spacing:.01em;
  }
  .video-speaker{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:14px;
    padding-bottom:14px;
    border-bottom:1px solid var(--line);
  }
  .video-speaker-avatar{
    flex-shrink:0;
    width:44px;height:44px;
    border-radius:50%;
    background:#E2E8F0;
    border:2px solid #60A5FA;
  }
  .video-speaker-name{
    font-size:14px;
    font-weight:700;
    color:var(--navy);
    line-height:1.3;
  }
  .video-speaker-role{
    font-size:12px;
    color:var(--muted);
    margin-top:2px;
  }
  .video-hero-desc{
    font-size:13px;
    line-height:1.85;
    color:#475569;
    margin-bottom:16px;
  }
  .video-hero-meta{
    display:flex;
    gap:18px;
    font-size:12px;
    color:var(--muted);
    margin-bottom:18px;
  }
  .video-watch-btn{
    margin-top:auto;
    background:var(--navy);
    color:#fff;
    border:none;
    border-radius:999px;
    padding:14px 20px;
    font-size:14px;
    font-weight: 600;
    cursor:pointer;
    font-family:inherit;
    letter-spacing:.04em;
    transition:transform .2s, box-shadow .2s;
  }
  .video-watch-btn:hover{transform:translateY(-1px);box-shadow:0 12px 28px rgba(7,27,58,.22)}
  .video-grid-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    margin:8px 0 20px;
  }
  .video-grid-head h2{font-size:18px;color:var(--navy);font-weight: 600;letter-spacing:.04em}
  .video-grid-head .total{font-size:13px;color:var(--muted)}
  .video-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    cursor:pointer;
    transition:transform .2s, box-shadow .2s;
  }
  .video-card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
  .video-card-thumb{position:relative;aspect-ratio:16/9;background:#0F172A;overflow:hidden}
  .video-card-thumb img{width:100%;height:100%;object-fit:cover;display:block;opacity:.92}
  .video-card-thumb::before{
    content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
    width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.9);
  }
  .video-card-thumb::after{
    content:"";position:absolute;top:50%;left:50%;transform:translate(-30%,-50%);
    border-style:solid;border-width:8px 0 8px 13px;border-color:transparent transparent transparent var(--navy);
  }
  .video-card .body{padding:14px 16px 18px}
  .video-card .body .badge-cat{font-size:10px;letter-spacing:.1em}
  .video-card .body .title{font-family:'Noto Serif JP',serif;font-size:15px;font-weight:700;color:var(--navy);line-height:1.55;margin:8px 0 10px}
  .video-card .body .speakers{font-size:12px;color:#475569;margin-bottom:6px}
  .video-card .body .meta{font-size:11px;color:var(--muted);letter-spacing:.04em}

  /* === ACADEMY === */
  .academy-hero{
    background:linear-gradient(135deg,#071B3A 0%,#0D2B57 50%,#143F7E 100%);
    color:#fff;
    padding:88px 0 72px;
    position:relative;
    overflow:hidden;
  }
  .academy-hero::before{
    content:"";
    position:absolute;
    top:-50%;right:-15%;
    width:780px;height:780px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(96,165,250,.18) 0%,transparent 65%);
    pointer-events:none;
  }
  .academy-hero .container{position:relative;z-index:1}
  .academy-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(400px,460px);
    gap:64px;
    align-items:center;
  }
  .academy-eyebrow{
    display:inline-flex;align-items:center;gap:10px;
    font-size:11px;font-weight:900;color:#93C5FD;
    letter-spacing:.22em;margin-bottom:22px;
  }
  .academy-hero h1{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;
    font-size:46px;font-weight:700;
    color:#fff;line-height:1.28;letter-spacing:.01em;
    margin-bottom:24px;
  }
  .academy-hero p{
    font-size:15px;line-height:1.95;color:rgba(255,255,255,.85);
    max-width:560px;margin-bottom:32px;
  }
  .academy-stats{display:flex;gap:14px}
  .academy-stat{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    border-radius:14px;
    padding:18px 22px;flex:1;
    text-align:center;
  }
  .academy-stat-num{font-family:'Noto Serif JP',serif;font-size:34px;font-weight:700;color:#fff;line-height:1}
  .academy-stat-label{font-size:11px;color:rgba(255,255,255,.7);margin-top:6px;letter-spacing:.12em}
  .rank-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    border-radius:18px;padding:28px;
  }
  .rank-card h3{font-size:13px;color:#93C5FD;font-weight:900;letter-spacing:.18em;margin-bottom:18px}
  .rank-row{display:flex;align-items:center;gap:16px;padding:12px 0;border-top:1px solid rgba(255,255,255,.1)}
  .rank-row:first-of-type{border-top:none}
  .rank-badge{
    font-size:11px;font-weight:900;letter-spacing:.1em;
    padding:5px 14px;border-radius:999px;flex-shrink:0;min-width:90px;text-align:center;
  }
  .rank-badge.basic{background:rgba(30,68,138,.10);color:#b6d0ff;border:1px solid #b6d0ff;}
  .rank-badge.advance,.rank-badge.advanced{background:rgba(185,28,28,.08);color:#B91C1C;border:1px solid rgba(185,28,28,.25)}
  .rank-badge.master{background:linear-gradient(135deg,#1A1200,#2D2000);color:#D4AF37;border:1px solid #B8860B}
  .rank-row-text{font-size:13px;color:rgba(255,255,255,.85);line-height:1.5}
  .rank-card .note{font-size:11px;color:rgba(255,255,255,.5);margin-top:14px}

  .progress-panel{
    background:#fff;border:1px solid var(--line);border-radius:18px;
    padding:32px;margin-top:48px;box-shadow:var(--shadow-sm);
  }
  .progress-panel-head{
    display:flex;align-items:center;justify-content:space-between;
    flex-wrap:wrap;gap:16px;margin-bottom:24px;
    padding-bottom:24px;border-bottom:1px solid var(--line);
  }
  .progress-panel-rank{display:flex;align-items:center;gap:18px}
  .progress-panel-icon{
    width:56px;height:56px;border-radius:50%;
    background:linear-gradient(135deg,#60A5FA,#1E448A);
    display:flex;align-items:center;justify-content:center;
    font-size:24px;color:#fff;flex-shrink:0;
  }
  .progress-panel-rank-name{font-size:11px;color:var(--muted);font-weight:700;letter-spacing:.1em}
  .progress-panel-rank-name b{display:block;font-size:22px;color:var(--navy);font-weight:900;letter-spacing:0;margin-top:2px}
  .progress-next{
    background:#EFF6FF;border:1px solid #BFDBFE;color:var(--navy);
    padding:10px 20px;border-radius:999px;font-size:13px;font-weight:700;
  }
  .progress-bar-row{margin-bottom:18px}
  .progress-bar-row:last-child{margin-bottom:0}
  .progress-bar-label{display:flex;justify-content:space-between;font-size:13px;color:#475569;font-weight:600;margin-bottom:8px}
  .progress-bar-value{color:var(--blue);font-weight:800}
  .progress-bar{height:10px;background:#E2E8F0;border-radius:999px;overflow:hidden}
  .progress-bar-fill{height:100%;background:linear-gradient(90deg,#60A5FA,#1E448A);border-radius:999px}

  .academy-card-locked{position:relative}
  .academy-card-locked::after{
    content:"🔒 Masterランク限定";
    position:absolute;left:0;right:0;bottom:0;
    background:rgba(7,27,58,.92);color:#93C5FD;
    text-align:center;font-size:11px;font-weight:700;
    padding:8px 0;letter-spacing:.06em;
  }
  .lvl-badge{
    display:inline-block;font-size:10px;font-weight:900;letter-spacing:.1em;
    padding:3px 10px;border-radius:999px;
  }
  .lvl-badge.basic{background:#EFF6FF;color:#1E448A;border:1px solid rgba(30,68,138,.20)}
  .lvl-badge.advance,.lvl-badge.advanced{background:#FEF2F2;color:#B91C1C;border-color:rgba(185,28,28,.25)}
  .lvl-badge.master{background:#1E448A;color:#fff}

  .curriculum-table{
    width:100%;background:#fff;border:1px solid var(--line);
    border-radius:14px;overflow:hidden;border-collapse:collapse;
    box-shadow:var(--shadow-sm);margin:24px 0;
  }
  .curriculum-table th{
    background:var(--navy);color:#fff;font-size:12px;font-weight: 600;
    letter-spacing:.08em;padding:14px 18px;text-align:left;
  }
  .curriculum-table td{
    padding:14px 18px;font-size:13px;color:#1F2937;
    border-top:1px solid var(--line);line-height:1.55;
  }
  .curriculum-table tr:hover td{background:#F0F7FF}

  .academy-cta{
    background:linear-gradient(135deg,#0D2B57,#071B3A);
    color:#fff;padding:56px 48px;border-radius:24px;
    text-align:center;margin:56px 0 0;position:relative;overflow:hidden;
  }
  .academy-cta::before{
    content:"🎓";position:absolute;top:-20px;right:30px;font-size:120px;opacity:.08;
  }
  .academy-cta h3{
    font-family:'Noto Serif JP',serif;font-size:28px;font-weight:700;
    color:#fff;margin-bottom:14px;letter-spacing:.01em;position:relative;
  }
  .academy-cta p{
    font-size:14px;color:rgba(255,255,255,.85);
    max-width:560px;margin:0 auto 28px;line-height:1.85;position:relative;
  }
  .academy-cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;position:relative}
  .academy-cta-btns .btn-pri{
    background:#fff;color:var(--navy);border:none;
    padding:14px 32px;border-radius:999px;font-size:14px;
    font-weight: 600;cursor:pointer;font-family:inherit;letter-spacing:.04em;
  }
  .academy-cta-btns .btn-sec{
    background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4);
    padding:14px 32px;border-radius:999px;font-size:14px;
    font-weight: 600;cursor:pointer;font-family:inherit;letter-spacing:.04em;
  }
  @media (max-width:1100px){
    .video-hero{grid-template-columns:1fr;gap:24px}
    .academy-hero-grid{grid-template-columns:1fr;gap:40px}
    .academy-hero h1{font-size:36px}
  }
  @media (max-width:780px){
    .academy-hero{padding:48px 0 40px}
    .academy-hero h1{font-size:28px}
    .academy-stats{flex-wrap:wrap}
    .academy-stat{flex-basis:calc(33% - 10px)}
    .academy-stat-num{font-size:26px}
    .progress-panel{padding:20px}
    .academy-cta{padding:36px 24px}
    .academy-cta h3{font-size:22px}
    .curriculum-table th,.curriculum-table td{padding:10px 12px;font-size:12px}
  }

/* ---- スマホ：カリキュラム表をカード型に変換 ---- */
@media (max-width: 600px) {
  .curriculum-table thead { display: none; }

  .curriculum-table,
  .curriculum-table tbody,
  .curriculum-table tr,
  .curriculum-table td { display: block; width: 100%; }

  .curriculum-table tr {
    background: #fff;
    border: 1px solid var(--line, #e4e4e0);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 14px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    position: relative;
  }
  .curriculum-table tr:hover td { background: transparent; }

  /* ランクバッジ列 */
  .curriculum-table td:nth-child(1) {
    padding: 0 0 10px;
    border-top: none;
  }

  /* テーマ列 — ラベルをdata属性で表示 */
  .curriculum-table td:nth-child(2) {
    font-size: 11px;
    color: #555;
    padding: 0 0 4px;
    border-top: none;
  }
  .curriculum-table td:nth-child(2)::before {
    content: 'テーマ：';
    font-weight: 700;
  }

  /* タイトル列 */
  .curriculum-table td:nth-child(3) {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.55;
    padding: 0 0 8px;
    border-top: none;
  }

  /* 時間列 — 右下に小さく */
  .curriculum-table td:nth-child(4) {
    font-size: 12px;
    color: #555;
    padding: 0;
    border-top: none;
    text-align: right;
  }
  .curriculum-table td:nth-child(4)::before {
    content: '再生時間：';
    font-size: 11px;
    color: #bbb;
  }
}


  /* ===== A案: 規約系ページ専用 ===== */
  .faq-item{
    background:#fff;border:1px solid var(--line);border-radius:12px;
    margin-bottom:10px;overflow:hidden;
  }
  .faq-item summary{
    list-style:none;cursor:pointer;
    padding:18px 24px;font-size:15px;font-weight:700;
    color:var(--navy);position:relative;
  }
  .faq-item summary::-webkit-details-marker{display:none}
  .faq-item summary::after{
    content:"+";position:absolute;right:24px;top:50%;
    transform:translateY(-50%);font-size:22px;color:var(--blue);font-weight:300;
  }
  .faq-item[open] summary::after{content:"−"}
  .faq-item div{
    padding:0 24px 22px;font-size:14px;color:#475569;line-height:1.95;
    border-top:1px solid var(--line);padding-top:16px;
  }
  .terms-body h3{
    font-family:'Noto Serif JP',serif;font-size:17px;color:var(--navy);
    font-weight:700;margin:32px 0 10px;padding-left:14px;
    border-left:3px solid var(--blue);scroll-margin-top:100px;
  }
  .terms-body p{font-size:14px;color:#475569;line-height:1.95;margin-bottom:12px}
  .terms-body ol{margin:8px 0 12px 24px}
  .terms-body ol li{font-size:14px;color:#475569;line-height:1.85;margin-bottom:4px}
  .info-block h2{
    font-family:'Noto Serif JP',serif;font-size:22px;color:var(--navy);
    font-weight:700;margin:36px 0 14px;padding-left:14px;
    border-left:4px solid var(--blue);scroll-margin-top:100px;
  }
  .info-block h2:first-child{margin-top:0}
  .info-block p{font-size:14.5px;color:#475569;line-height:1.95;margin-bottom:14px}
  .info-block ul{margin:12px 0 18px 0;padding-left:24px}
  .info-block ul li{font-size:14px;color:#475569;line-height:1.85;margin-bottom:6px}
  .ext-list{list-style:none !important;padding:0 !important;margin:18px 0 !important}
  .ext-list li{
    background:#EFF6FF;border:1px solid var(--line);border-radius:8px;
    padding:14px 18px;margin-bottom:10px !important;font-size:14px !important;color:var(--navy);
  }
  .ext-list li .muted{color:var(--muted);font-size:13px;display:block;margin-top:6px}
  .contact-form .form-row{margin-bottom:18px}
  .contact-form label{
    display:block;font-size:13px;font-weight:700;color:var(--navy);
    margin-bottom:6px;
  }
  .contact-form .required{
    display:inline-block;background:#1E448A;color:#fff;
    font-size:10px;padding:2px 8px;border-radius:3px;margin-left:6px;font-weight:700;
  }
  .contact-form input,.contact-form select,.contact-form textarea{
    width:100%;padding:12px 14px;font-size:14px;
    border:1px solid var(--line);border-radius:6px;font-family:inherit;
  }
  .contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
    outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(30,68,138,.12);
  }
  .form-note{font-size:12px;color:var(--muted);margin-top:12px;line-height:1.7}
  @media (max-width:780px){
    .terms-toc{display:none}
    .terms-body{grid-column:1 / -1}
  }

  /* ===== ポリシー系ページ共通レイアウト ===== */
  .policy-hero{
    background:var(--bg,#f2f2f0);border-bottom:1px solid var(--line);
    padding:36px 0 28px;
  }
  .policy-hero h1{
    font-family:'Noto Serif JP',serif;
    font-size:28px;font-weight:900;color:var(--navy);
    margin:12px 0 6px;letter-spacing:-.3px;
  }
  .policy-hero .policy-desc{font-size:14px;color:#555;margin-top:8px;line-height:1.7}
  .policy-hero .policy-meta{font-size:13px;color:#555;margin-top:8px}
  .policy-layout{
    display:flex;align-items:flex-start;gap:40px;
    padding:48px 0 80px;
  }
  .policy-main{flex:1;min-width:0}
  .policy-main h2{
    font-family:'Noto Serif JP',serif;
    font-size:17px;font-weight:900;color:var(--navy);
    border-left:4px solid var(--blue);padding-left:12px;
    margin:40px 0 12px;line-height:1.55;scroll-margin-top:100px;
  }
  .policy-main h2:first-child{margin-top:0}
  .policy-main p{font-size:14px;color:#333;line-height:1.85;margin-bottom:12px}
  .policy-main ul,.policy-main ol{padding-left:1.5em;margin:8px 0 16px}
  .policy-main ul li,.policy-main ol li{
    font-size:14px;color:#333;line-height:1.85;margin-bottom:4px;
  }
  .policy-main a{color:var(--navy);text-decoration:underline}
  .policy-toc{width:220px;flex-shrink:0;position:sticky;top:88px}
  .policy-toc h3{
    font-size:12px;font-weight:700;color:#555;
    text-transform:uppercase;letter-spacing:.08em;
    margin-bottom:10px;padding-bottom:8px;
    border-bottom:1px solid var(--line);
  }
  .policy-toc ul{list-style:none;padding:0;margin:0;counter-reset:toc}
  .policy-toc ul li{counter-increment:toc;margin-bottom:2px}
  .policy-toc ul li a{
    display:block;font-size:12px;color:#555;text-decoration:none;
    padding:4px 6px;border-radius:3px;line-height:1.5;
  }
  .policy-toc ul li a::before{content:counter(toc) ". ";color:#555;font-size:11px}
  .policy-toc ul li a:hover{background:#f0f0ec;color:var(--navy)}
  .policy-notice{
    background:#f6f6f4;border:1px solid var(--line);border-radius:4px;
    padding:14px 18px;font-size:13px;color:#666;line-height:1.7;margin:16px 0;
  }
  .policy-notice--warn{background:#fffbeb;border-color:#fde68a}
  .policy-quote{
    background:#f6f6f4;border-left:3px solid #ccc;
    padding:12px 16px;font-size:13px;color:#444;
    border-radius:0 4px 4px 0;margin:8px 0 16px;
  }
  .policy-contact{
    background:var(--navy);color:#fff;border-radius:6px;
    padding:28px 32px;margin-top:48px;
  }
  .policy-contact h3{font-size:17px;font-weight:900;margin-bottom:8px}
  .policy-contact p{font-size:14px;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:16px}
  .policy-contact a.btn-policy{
    display:inline-block;padding:10px 24px;
    background:#fff;color:var(--navy);
    font-size:14px;font-weight:700;border-radius:4px;text-decoration:none;
  }
  .service-table{
    width:100%;border-collapse:collapse;font-size:13px;
    margin:12px 0 24px;border:1px solid var(--line);border-radius:4px;overflow:hidden;
  }
  .service-table th{
    background:#f6f6f4;font-weight:700;color:#555;
    padding:10px 14px;text-align:left;border-bottom:1px solid var(--line);white-space:nowrap;
  }
  .service-table td{
    padding:12px 14px;border-bottom:1px solid #f0f0ec;
    color:#333;line-height:1.6;vertical-align:top;
  }
  .service-table tr:last-child td{border-bottom:none}
  .service-table td a{color:var(--navy);text-decoration:underline}
  .policy-footer-note{
    background:#f6f6f4;border:1px solid var(--line);border-radius:4px;
    padding:20px 22px;margin-top:48px;font-size:13px;color:#555;line-height:1.7;
  }
  .policy-footer-note a{color:var(--navy);font-weight:700;text-decoration:underline}
  @media(max-width:780px){
    .policy-layout{flex-direction:column;padding:32px 0 48px}
    .policy-toc{display:none}
  }


  /* ===== Public AGENDA Logo (PA Monogram) ===== */
  :root{
    --pa-vermilion:#1E448A;
    --pa-sand:#E8A87C;
    --pa-ink:#1A1D2E;
    --pa-bone:#F5F1EA;
  }
  .logo{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    color:#fff !important;
    border-bottom:none !important;
    padding-left:0 !important;
    font-size:0 !important;
    letter-spacing:0 !important;
    line-height:1 !important;
    position:relative;
    flex-shrink:0;
  }
  .logo:before,
  .logo::before{display:none !important;content:none !important}
  .logo span:not(.lm-p):not(.lm-a){
    color:rgba(255,255,255,.55) !important;
    font-size:0 !important;
    margin:0 !important;
  }
  .logo-mark{
    width:42px;
    height:42px;
    border:1.5px solid rgba(255,255,255,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    flex-shrink:0;
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;
  }
  .logo-mark .lm-p,
  .logo-mark .lm-a{
    font-size:22px !important;
    font-weight:600 !important;
    line-height:1;
    position:absolute;
    top:50%;
    transform:translateY(-52%);
  }
  .logo-mark .lm-p{
    left:7px;
    color:#fff !important;
  }
  .logo-mark .lm-a{
    right:6px;
    color:var(--pa-sand) !important;
  }
  .logo-body{
    display:flex !important;
    flex-direction:column;
    border-left:1px solid rgba(255,255,255,.22);
    padding-left:14px;
    color:inherit;
  }
  .logo-name{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif !important;
    font-size:18px !important;
    font-weight:500 !important;
    color:#fff !important;
    line-height:1.15 !important;
    letter-spacing:.01em !important;
  }
  .logo-sub{
    font-family:Arial,Helvetica,'Inter',sans-serif !important;
    font-size:8px !important;
    font-weight:600 !important;
    color:rgba(255,255,255,.55) !important;
    letter-spacing:.18em !important;
    margin-top:5px !important;
    text-transform:uppercase;
  }

  /* Footer logo */
  .f-logo-wrap{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
  }
  .f-logo-mark{
    width:38px;
    height:38px;
    border:1.5px solid rgba(255,255,255,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    flex-shrink:0;
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;
  }
  .f-logo-mark .lm-p,
  .f-logo-mark .lm-a{
    font-size:20px;
    font-weight:600;
    line-height:1;
    position:absolute;
    top:50%;
    transform:translateY(-52%);
  }
  .f-logo-mark .lm-p{left:6px;color:#fff}
  .f-logo-mark .lm-a{right:5px;color:var(--pa-sand)}
  .f-logo{
    font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif !important;
    font-size:20px !important;
    font-weight:500 !important;
    color:#fff !important;
    border:none !important;
    padding:0 !important;
    margin:0 !important;
    display:inline-block !important;
    line-height:1.1 !important;
    letter-spacing:.01em !important;
  }

  @media (max-width:780px){
    .logo-mark{width:36px;height:36px}
    .logo-mark .lm-p,.logo-mark .lm-a{font-size:18px}
    .logo-mark .lm-p{left:6px}
    .logo-mark .lm-a{right:5px}
    .logo-name{font-size:16px !important}
    .logo-sub{font-size:7px !important;letter-spacing:.14em !important}
  }
  @media (max-width:520px){
    .logo-sub{display:none !important}
    .logo-body{padding-left:10px}
  }


  /* ===== Public AGENDA Logo (Image) ===== */
  .logo{
    display:inline-flex !important;
    align-items:center !important;
    text-decoration:none !important;
    border-bottom:none !important;
    padding:0 !important;
    margin:0 !important;
    line-height:1 !important;
    flex-shrink:0;
  }
  .logo:before,
  .logo::before{display:none !important;content:none !important}
  .logo-img{
    height:40px !important;
    width:auto !important;
    display:block;
  }
  .f-logo-wrap{
    margin-bottom:18px;
  }
  .f-logo-img{
    height:54px;
    width:auto;
    display:block;
  }

  /* ヘッダー高さを少し拡張してロゴが収まるように */
  .header-inner{
    min-height:88px !important;
    height:auto !important;
  }

  @media (max-width:780px){
    .logo-img{height:46px !important}
    .f-logo-img{height:44px}
    .header-inner{min-height:72px !important}
  }
  @media (max-width:520px){
    .logo-img{height:40px !important}
  }

  /* =============================================
     Hamburger / Mobile Menu
     ============================================= */
  .hamburger-btn{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:8px;
    border-radius:8px;
    margin-left:auto;
    flex-shrink:0;
  }
   @media (max-width:1100px){
    .hamburger-btn{
    display:block;

  }
  }
  .hamburger-btn span{
    display:block;
    width:22px;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:transform .25s ease, opacity .25s ease;
    margin: 3px 0;
  }
  .hamburger-btn.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .hamburger-btn.is-open span:nth-child(2){opacity:0;transform:scaleX(0)}
  .hamburger-btn.is-open span:nth-child(3){transform:translateY(-3px) rotate(-45deg)}


  .mobile-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:linear-gradient(180deg,#071B3A 0%,#0A2347 100%);
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 12px 32px rgba(7,27,58,.3);
    z-index:200;
    padding:8px 0 20px;
    transform:translateY(-8px);
    opacity:0;
    transition:transform .25s ease, opacity .25s ease;
    pointer-events:none;
  }
  .mobile-menu.is-open{
    display: block;
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .mobile-menu .mob-nav{
    display:flex;
    flex-direction:column;
  }
  .mobile-menu .mob-nav a{
    color:rgba(255,255,255,.82) !important;
    font-size:15px !important;
    font-weight:700 !important;
    padding:13px 20px !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
    text-decoration:none !important;
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    border-radius:0 !important;
    transition:background .15s ease !important;
  }
  .mobile-menu .mob-nav a:hover,
  .mobile-menu .mob-nav a.active{
    background:rgba(255,255,255,.09) !important;
    color:#fff !important;
  }
  .mobile-menu .mob-nav a .nav-sub,
  .mobile-menu .mob-nav a small {
    display:inline !important;
    font-size:11px !important;
    color:rgba(255,255,255,.42) !important;
    font-weight:400 !important;
    margin-left:4px !important;
  }
  .mobile-menu-actions{
    display:flex !important;
    gap:10px !important;
    padding:16px 20px 0 !important;
  }
  .mobile-menu-actions .btn-login,
  .mobile-menu-actions .btn-signup{
    flex:1 !important;
    text-align:center !important;
    justify-content:center !important;
    padding:12px 0 !important;
    font-size:14px !important;
  }


/* =========================================================
   ユーザーアバター ランク枠色
   ========================================================= */
.pa-avatar { display:inline-block; border-radius:50%; }
.pa-avatar img { display:block; border-radius:50%; border:2px solid transparent; }
.pa-avatar.rank-beginner img,
.pa-avatar.rank-standard img  { border-color:#60A5FA; }
.pa-avatar.rank-advance img   { border-color:#F87171; }
.pa-avatar.rank-expert img    { border-color:#D4AF37; box-shadow:0 0 8px rgba(212,175,55,.6); }

/* =========================================================
   コメントセクション
   ========================================================= */
.comments-section { margin-top:48px; padding-top:32px; border-top:2px solid #e4e4e0; }
.comments-title { font-size:18px; font-weight:700; margin-bottom:24px; display:flex; align-items:center; gap:10px; }
.comments-count { background:var(--navy,#1a1a2e); color:#fff; font-size:12px; border-radius:20px; padding:2px 10px; }
/* カード 投稿タイプラベル */
.pt-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  text-transform: uppercase;
  width: fit-content;
}
.pt-label--agenda      { background: #1E448A; color: #fff; }
.pt-label--report      { background: #166534; color: #fff; }
.pt-label--crosstalk   { background: #6D28D9; color: #fff; }
.pt-label--news        { background: #B45309; color: #fff; }
.pt-label--academy     { background: #0F766E; color: #fff; }

/* カード いいね数 */
.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.card-like-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
}
.card-like-count svg {
  opacity: .6;
  flex-shrink: 0;
}

.comment-item { padding:20px 0; border-bottom:1px solid #f0f0ec; }
.comment-meta { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.comment-author-info { display:flex; flex-direction:column; gap:2px; flex:1; }
.comment-author-name { font-size:14px; font-weight:700; color:#1a1a2e; }
.comment-rank-label { font-size:11px; color:#555; }
.comment-date { font-size:12px; color:#555; margin-left:auto; }
.comment-body { font-size:14px; line-height:1.8; color:#444; padding-left:50px; overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.comments-empty { color:#555; font-size:14px; padding:24px 0; }

.comment-form-wrap { margin-top:32px; }
.comment-form-title { font-size:16px; font-weight:700; margin-bottom:16px; }
.comment-form-user { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.btn-comment-submit { background:var(--navy,#1a1a2e) !important; color:#fff !important; border:none !important; padding:10px 28px !important; border-radius:4px !important; font-size:14px !important; cursor:pointer !important; }
.btn-comment-submit:hover { opacity:.85 !important; }

.comment-login-prompt { background:#f8f8f5; border:1.5px solid #e4e4e0; border-radius:10px; padding:32px 24px; text-align:center; }
.comment-login-icon { font-size:32px; margin-bottom:12px; }
.comment-login-text { font-size:14px; color:#555; margin-bottom:20px; font-weight:600; }
.comment-login-btns { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.btn-comment-login { display:inline-block; padding:10px 28px; border:1.5px solid var(--navy,#1a1a2e); color:var(--navy,#1a1a2e) !important; text-decoration:none !important; border-radius:4px; font-size:14px; font-weight:700; transition:background .15s,color .15s; }
.btn-comment-login:hover { background:var(--navy,#1a1a2e); color:#fff !important; }
.btn-comment-register { display:inline-block; background:var(--navy,#1a1a2e); color:#fff !important; text-decoration:none !important; padding:10px 28px; border-radius:4px; font-size:14px; font-weight:700; transition:opacity .15s; }
.btn-comment-register:hover { opacity:.85; }
.pa-comment-form { margin-top:16px; }
/* コメント：著者サブ情報（所属/ランク） */
.comment-author-sub { font-size:11px; color:#555; margin-top:1px; }

/* コメント：右側エリア（日時 + いいね） */
.comment-meta-right { display:flex; flex-direction:column; align-items:flex-end; gap:6px; margin-left:auto; flex-shrink:0; }
.comment-date { font-size:12px; color:#555; white-space:nowrap; }

/* コメント 3点メニュー */
.pa-comment-menu-wrap {
  position: relative;
}
.pa-comment-menu-trigger {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; width: 28px; height: 28px; padding: 0;
  background: none; border: none; cursor: pointer; border-radius: 50%;
  transition: background .15s;
}
.pa-comment-menu-trigger:hover { background: #f0f0ec; }
.pa-comment-menu-trigger span {
  display: block; width: 4px; height: 4px;
  background: #aaa; border-radius: 50%;
  transition: background .15s;
}
.pa-comment-menu-trigger:hover span { background: #555; }

.pa-comment-menu-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: #fff; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.14);
  min-width: 130px; padding: 6px; z-index: 100;
}
.pa-comment-menu-dropdown.is-open { display: block; }

/* 編集・削除ボタン（ドロップダウン内） */
.pa-comment-edit-btn,
.pa-comment-delete-btn {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600; padding: 10px 14px;
  border-radius: 6px; line-height: 1; text-align: left;
  transition: background .15s;
}
.pa-comment-edit-btn { color: #1a1a2e; }
.pa-comment-edit-btn:hover { background: #f5f5f3; }
.pa-comment-delete-btn { color: #B91C1C; }
.pa-comment-delete-btn:hover { background: #FEF2F2; }
.pa-comment-delete-btn:disabled,
.pa-comment-edit-btn:disabled { opacity: .5; cursor: default; }

/* コメント編集モーダル */
.pa-comment-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.5); align-items: center; justify-content: center;
}
.pa-comment-modal-overlay.is-open { display: flex; }
.pa-comment-modal {
  background: #fff; border-radius: 8px; width: 100%; max-width: 540px;
  margin: 16px; padding: 28px 32px; box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.pa-comment-modal-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 800; color: #1a1a2e; margin-bottom: 16px;
}
.pa-comment-modal-close {
  background: none; border: none; font-size: 18px; cursor: pointer; color: #aaa; line-height: 1;
}
.pa-comment-modal-close:hover { color: #333; }
.pa-comment-modal-textarea {
  width: 100%; box-sizing: border-box; padding: 11px 14px;
  border: 1.5px solid #ccc; border-radius: 4px; font-size: 14px;
  resize: vertical; line-height: 1.7; font-family: inherit;
}
.pa-comment-modal-textarea:focus { border-color: #1a1a2e; outline: none; }
.pa-comment-modal-foot {
  display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px;
}
.pa-comment-modal-cancel {
  padding: 9px 20px; background: none; border: 1.5px solid #ccc;
  border-radius: 4px; cursor: pointer; font-size: 14px; color: #666;
}
.pa-comment-modal-cancel:hover { border-color: #aaa; }
.pa-comment-modal-save {
  padding: 9px 24px; background: #1a1a2e; color: #fff;
  border: none; border-radius: 4px; cursor: pointer;
  font-size: 14px; font-weight: 700;
}
.pa-comment-modal-save:hover { background: #2d2d4e; }
.pa-comment-modal-save:disabled { opacity: .6; cursor: default; }
.pa-comment-modal-msg { font-size: 13px; color: #B91C1C; margin-top: 8px; }

/* コメントいいねボタン */
.pa-comment-like-btn {
  display:inline-flex; align-items:center; gap:4px;
  background:none; border:1.5px solid #e4e4e0; border-radius:20px;
  padding:3px 10px; cursor:pointer; color:#555;
  font-size:12px; font-weight:700;
  transition:color .15s, border-color .15s, background .15s;
  line-height:1;
}
.pa-comment-like-btn:hover { border-color:#3B82F6; color:#3B82F6; }
.pa-comment-like-btn.is-liked { background:#EFF6FF; border-color:#3B82F6; color:#3B82F6; }
.pa-comment-like-btn:disabled { opacity:.6; cursor:default; }
.pa-comment-like-count:empty { display:none; }

.comment-field-wrap { margin-bottom:12px; }
.comment-field-wrap textarea,
#pa-comment-textarea {
  width:100%;
  padding:12px 14px;
  border:1.5px solid #ddd;
  border-radius:6px;
  font-size:14px;
  font-family:inherit;
  line-height:1.7;
  resize:vertical;
  outline:none;
  transition:border-color .15s;
  box-sizing:border-box;
}
.comment-field-wrap textarea:focus,
#pa-comment-textarea:focus { border-color:#1a1a2e; }
.comment-submit-row { display:flex; align-items:center; justify-content:flex-end; gap:12px; }

/* =========================================================
   いいねボタン
   ========================================================= */
.pa-like-wrap { display:flex; align-items:center; flex-wrap:wrap; gap:8px 12px; margin:32px 0 0; padding:24px 0; border-top:1px solid #e4e4e0; }
.pa-like-btn { display:flex; align-items:center; gap:6px; background:#fff; border:2px solid #e4e4e0; border-radius:100px; padding:8px 20px; cursor:pointer; color:#aaa; font-size:16px; font-weight:700; transition:all .2s; }
.pa-like-btn:hover { border-color:#3B82F6; color:#3B82F6; }
.pa-like-btn.is-liked { border-color:#3B82F6; color:#3B82F6; background:#EFF6FF; }
.pa-like-btn:disabled { opacity:.6; cursor:default; }
.pa-like-icon { transition:transform .15s; }
.pa-like-btn:hover .pa-like-icon,
.pa-like-btn.is-liked .pa-like-icon { transform:scale(1.2); }
.pa-like-count { min-width:16px; }
.pa-like-label { font-size:13px; color:#555; }

/* フェローお気に入りボタン */
.pa-fav-fellow-btn { display:flex; align-items:center; gap:6px; background:#fff; border:2px solid #e4e4e0; border-radius:100px; padding:8px 18px; margin-left:4px; cursor:pointer; color:#aaa; font-size:13px; font-weight:700; transition:all .2s; }
.pa-fav-fellow-btn:hover { border-color:#E8A33D; color:#E8A33D; }
.pa-fav-fellow-btn.is-favorited { border-color:#E8A33D; color:#E8A33D; background:#FFF7EA; }
.pa-fav-fellow-btn:disabled { opacity:.6; cursor:default; }
.pa-fav-fellow-icon { transition:transform .15s; }
.pa-fav-fellow-btn:hover .pa-fav-fellow-icon,
.pa-fav-fellow-btn.is-favorited .pa-fav-fellow-icon { transform:scale(1.15); }
.pa-fav-fellow-btn.is-favorited .pa-fav-fellow-icon { fill:currentColor; }

/* =========================================================
   ACADEMY 動画プレーヤー
   ========================================================= */
.academy-video-wrap { position:relative; width:100%; padding-top:56.25%; /* 16:9 */ margin-bottom:32px; border-radius:6px; overflow:hidden; background:#000; }
.academy-video-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; }

/* =========================================================
   ACADEMY ランクロック画面
   ========================================================= */
.academy-rank-lock { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.85); border-radius:4px; }
.academy-rank-lock__inner { text-align:center; padding:32px 24px; max-width:360px; }
.academy-rank-lock__inner p { margin:8px 0; font-size:15px; line-height:1.7; }


/* =========================================================
   ACADEMY ページ（デザインファイル準拠）
   ========================================================= */
.academy-hero{background:linear-gradient(135deg,#071B3A 0%,#0D2B57 50%,#143F7E 100%);color:#fff;padding:88px 0 72px;position:relative;overflow:hidden;}
.academy-hero::before{content:"";position:absolute;top:-50%;right:-15%;width:780px;height:780px;border-radius:50%;background:radial-gradient(circle,rgba(96,165,250,.18) 0%,transparent 65%);pointer-events:none;}
.academy-hero .container{position:relative;z-index:1;}
.academy-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(400px,460px);gap:64px;align-items:center;}
.academy-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:11px;font-weight:900;color:#93C5FD;letter-spacing:.22em;margin-bottom:22px;}
.academy-hero h1{font-family:'Noto Serif JP','Yu Mincho','Hiragino Mincho ProN',serif;font-size:46px;font-weight:700;color:#fff;line-height:1.28;letter-spacing:.01em;margin-bottom:24px;}
.academy-hero p{font-size:15px;line-height:1.95;color:rgba(255,255,255,.85);max-width:560px;margin-bottom:32px;}
.academy-stats{display:flex;gap:14px;}
.academy-stat{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(8px);border-radius:14px;padding:18px 22px;flex:1;text-align:center;}
.academy-stat-num{font-family:'Noto Serif JP',serif;font-size:34px;font-weight:700;color:#fff;line-height:1;}
.academy-stat-label{font-size:11px;color:rgba(255,255,255,.7);margin-top:6px;letter-spacing:.12em;}
.rank-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(10px);border-radius:18px;padding:28px;}
.rank-card h3{font-size:13px;color:#93C5FD;font-weight:900;letter-spacing:.18em;margin-bottom:18px;}
.rank-row{display:flex;align-items:center;gap:16px;padding:12px 0;border-top:1px solid rgba(255,255,255,.1);}
.rank-row:first-of-type{border-top:none;}
.rank-badge{font-size:11px;font-weight:900;letter-spacing:.1em;padding:5px 14px;border-radius:999px;flex-shrink:0;min-width:90px;text-align:center;}
.rank-badge.basic{background:rgba(30,68,138,.10);color:#1E448A;border:1px solid rgba(30,68,138,.30);}
.rank-badge.advanced{background:rgba(96,165,250,.20);color:#93C5FD;border:1px solid rgba(96,165,250,.50);}
.rank-badge.master{background:linear-gradient(135deg,#1A1200,#2D2000);color:#D4AF37;border:1px solid #B8860B;}
.rank-row-text{font-size:13px;color:rgba(255,255,255,.85);line-height:1.5;}
.rank-card .note{font-size:11px;color:rgba(255,255,255,.5);margin-top:14px;}

/* ===== 進捗パネル（左右2カラム） ===== */
.progress-panel{
  background:#fff;border:1px solid var(--line,#e4e4e0);border-radius:18px;
  padding:32px;margin-top:48px;box-shadow:0 1px 4px rgba(0,0,0,.06);
  display:grid;
  grid-template-columns:280px 1fr;
  gap:32px;
  align-items:center;
}

/* 左カラム */
.progress-panel-left{
  display:flex;flex-direction:column;gap:16px;
  padding-right:32px;
  border-right:1px solid var(--line,#e4e4e0);
}
/* ①アイコン＋ランク名 横並び */
.progress-panel-top{
  display:flex;align-items:center;gap:14px;
}
.progress-panel-rank-info{display:flex;flex-direction:column;gap:4px;}
.progress-panel-rank-label{font-size:11px;color:#555;font-weight:700;letter-spacing:.1em;}
.progress-panel-rank-name{display:block;font-size:22px;color:#1a1a2e;font-weight:900;letter-spacing:0;}
/* ②次のランク：①と同幅で1行 */
.progress-next{
  display:block;
  background:#EFF6FF;border:1px solid #BFDBFE;color:#1a1a2e;
  padding:8px 16px;border-radius:999px;font-size:12px;font-weight:700;
  white-space:nowrap;
  text-align:center;
}
/* あと何本で次のランク（テキスト表示） */
.progress-next-videos{
  font-size:12px;
  color:#475569;
  text-align:center;
}

/* 右カラム */
.progress-panel-right{display:flex;flex-direction:column;gap:0;}
.progress-bar-row{margin-bottom:18px;}
.progress-bar-row:last-child{margin-bottom:0;}
.progress-bar-label{display:flex;justify-content:space-between;font-size:13px;color:#475569;font-weight:600;margin-bottom:8px;}
.progress-bar-value{color:#1E448A;font-weight: 600;}

@media(max-width:768px){
  .progress-panel{grid-template-columns:1fr;}
  .progress-panel-left{border-right:none;border-bottom:1px solid var(--line,#e4e4e0);padding-right:0;padding-bottom:24px;}
}

/* ===== ランクカラー定義 =====
   Basic  = ブルー
   Advance = 赤系
   Master  = ゴールド
================================ */

/* lvl-badge（タグ） Basic=青 / Advance=赤 / Master=金 */
.lvl-badge { display:inline-block; font-size:10px; font-weight:900; letter-spacing:.08em; padding:3px 10px; border-radius:999px; border:1px solid transparent; }
.lvl-badge.beginner,
.lvl-badge.basic    { background:#EFF6FF; color:#1E448A; border-color:rgba(30,68,138,.25); }
.lvl-badge.advance,
.lvl-badge.advanced { background:#FEF2F2; color:#B91C1C; border-color:rgba(185,28,28,.25); }
.lvl-badge.expert,
.lvl-badge.master   { background:linear-gradient(135deg,#1A1200,#2D2000); color:#D4AF37; border-color:#B8860B; }

/* ac-level（ACADEMYカードのランクタグ） */
.ac-level.basic,
.academy-sec .ac-level.basic     { background:#EFF6FF; color:#1E448A; }
.ac-level.advanced,
.ac-level.advance,
.academy-sec .ac-level.advanced,
.academy-sec .ac-level.advance   { background:#FEF2F2; color:#B91C1C; }
.ac-level.master,
.ac-level.expert,
.academy-sec .ac-level.master,
.academy-sec .ac-level.expert    { background:linear-gradient(135deg,#1A1200,#2D2000); color:#D4AF37; }

/* rank-badge（heroエリアなど） */
.rank-badge.basic    { background:rgba(30,68,138,.10);  color:#1E448A; border:1px solid rgba(30,68,138,.25); }
.rank-badge.advanced,
.rank-badge.advance  { background:rgba(185,28,28,.08);  color:#B91C1C; border:1px solid rgba(185,28,28,.25); }
.rank-badge.master,
.rank-badge.expert   { background:linear-gradient(135deg,#1A1200,#2D2000); color:#D4AF37; border:1px solid #B8860B; }

/* アバター枠色 */
.pa-avatar.rank-beginner img,

/* ヘッダーのランク文字色 */
.header-user-rank.rank-beginner,
.header-user-rank.rank-standard { color:#93C5FD; }
.header-user-rank.rank-advance  { color:#FCA5A5; }
.header-user-rank.rank-expert   { color:#D4AF37; }
.progress-bar{height:10px;background:#E2E8F0;border-radius:999px;overflow:hidden;}
.progress-bar-fill{height:100%;background:linear-gradient(90deg,#60A5FA,#1E448A);border-radius:999px;}

.academy-card{background:#fff;border:1px solid var(--line,#e4e4e0);border-radius:12px;overflow:hidden;box-shadow:0 1px 4px rgba(0,0,0,.05);transition:box-shadow .15s,transform .15s;display:block;}
.academy-card:hover{box-shadow:0 6px 20px rgba(0,0,0,.1);transform:translateY(-3px);}
.academy-card-locked{position:relative;}
.academy-card-locked::after{content:"🔒 Masterランク限定";position:absolute;left:0;right:0;bottom:0;background:linear-gradient(135deg,#1A1200,#2D2000);color:#D4AF37;text-align:center;font-size:11px;font-weight:700;padding:8px 0;letter-spacing:.06em;}
.lvl-badge{display:inline-block;font-size:10px;font-weight:900;letter-spacing:.1em;padding:3px 10px;border-radius:999px;}
.lvl-badge.basic{background:#EFF6FF;color:#1E448A;border:1px solid rgba(30,68,138,.20);}
.lvl-badge.advanced{background:#60A5FA;color:#fff;}
.lvl-badge.master{background:linear-gradient(135deg,#1A1200,#2D2000);color:#D4AF37;border:1px solid #B8860B;}

.curriculum-table{width:100%;background:#fff;border:1px solid var(--line,#e4e4e0);border-radius:14px;overflow:hidden;border-collapse:collapse;box-shadow:0 1px 4px rgba(0,0,0,.06);margin:24px 0;}
.curriculum-table th{background:#1a1a2e;color:#fff;font-size:12px;font-weight: 600;letter-spacing:.08em;padding:14px 18px;text-align:left;}
.curriculum-table td{padding:14px 18px;font-size:13px;color:#1F2937;border-top:1px solid var(--line,#e4e4e0);line-height:1.55;}
.curriculum-table tr:hover td{background:#F0F7FF;}

.academy-cta{background:linear-gradient(135deg,#0D2B57,#071B3A);color:#fff;padding:56px 48px;border-radius:24px;text-align:center;margin:56px 0 0;position:relative;overflow:hidden;}
.academy-cta::before{content:"🎓";position:absolute;top:-20px;right:30px;font-size:120px;opacity:.08;}
.academy-cta h3{font-family:'Noto Serif JP',serif;font-size:28px;font-weight:700;color:#fff;margin-bottom:14px;letter-spacing:.01em;position:relative;}
.academy-cta p{font-size:14px;color:rgba(255,255,255,.85);max-width:560px;margin:0 auto 28px;line-height:1.85;position:relative;}
.academy-cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;position:relative;}
.academy-cta-btns .btn-pri{background:#fff;color:#1a1a2e;border:none;padding:14px 32px;border-radius:999px;font-size:14px;font-weight: 600;cursor:pointer;font-family:inherit;letter-spacing:.04em;text-decoration:none;display:inline-block;}
.academy-cta-btns .btn-sec{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4);padding:14px 32px;border-radius:999px;font-size:14px;font-weight: 600;cursor:pointer;font-family:inherit;letter-spacing:.04em;text-decoration:none;display:inline-block;}

@media(max-width:1100px){.academy-hero-grid{grid-template-columns:1fr;gap:40px;}.academy-hero h1{font-size:36px;}}
@media(max-width:768px){.academy-hero{padding:48px 0 40px;}.academy-hero h1{font-size:23px;}.academy-stats{flex-wrap:wrap;}.academy-card-grid{grid-template-columns:1fr 1fr !important;}.academy-cta{padding:36px 24px;}.academy-cta h3{font-size:20px;}}
@media(max-width:600px){.academy-card-grid{grid-template-columns:1fr !important;}.progress-panel-head{flex-direction:column;align-items:flex-start;}}

/* =========================================================
   新規登録ページ
   ========================================================= */
.auth-wrap{min-height:calc(100vh - 130px);display:flex;align-items:flex-start;justify-content:center;padding:48px 24px 64px;}
.auth-card{background:#fff;border:1px solid #e4e4e0;border-radius:8px;padding:40px 44px;width:100%;max-width:480px;box-shadow:0 2px 16px rgba(0,0,0,.08);}
@media (max-width:780px){
.auth-card{padding: 20px;}
}

.auth-card h1{font-size:24px;font-weight:900;margin-bottom:6px;}
.auth-card .auth-sub{font-size:14px;color:#555;margin-bottom:28px;line-height:1.6;}
.auth-errors{background:#FEF2F2;border:1px solid #FECACA;border-radius:4px;padding:12px 16px;margin-bottom:20px;}
.auth-errors p{font-size:13px;color:#B91C1C;margin:4px 0;}
.benefits-bar{background:#f6f6f4;border:1px solid #e4e4e0;border-radius:4px;padding:14px 16px;margin-bottom:24px;font-size:13px;color:#555;}
.benefits-bar ul{list-style:none;display:flex;flex-wrap:wrap;gap:6px 16px;margin-top:6px;}
.benefits-bar ul li::before{content:"✓ ";color:#1a5a20;font-weight:700;}
.form-field{margin-bottom:18px;}
.form-field label{display:block;font-size:13px;font-weight:700;color:#fff;margin-bottom:6px;}
.form-field.bold-color label{display:block;font-size:13px;font-weight:700;color:#444;margin-bottom:6px;}
.form-field label .req{background:#B91C1C;color:#fff;font-size:10px;font-weight:700;padding:1px 5px;border-radius:2px;margin-left:4px;vertical-align:middle;}
.form-field label .opt{font-size:11px;color:#555;font-weight:400;margin-left:4px;}
.form-field input,.form-field select{width:100%;padding:11px 14px;border:1.5px solid #ccc;border-radius:4px;font-size:15px;color:#1a1a1a;background:#fafafa;outline:none;font-family:inherit;transition:border-color .15s;box-sizing:border-box;}
.form-field input:focus,.form-field select:focus{border-color:#1a1a1a;background:#fff;}
.form-field .hint{font-size:12px;color:#555;margin-top:4px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.btn-auth-primary{width:100%;padding:13px;background:#1a1a2e;color:#fff;font-size:15px;font-weight: 600;border:none;border-radius:4px;cursor:pointer;margin-top:8px;letter-spacing:.3px;font-family:inherit;display: block;margin: 0 auto;}
.btn-auth-primary:hover{opacity:.9;}
.terms-check{display:flex;align-items:flex-start;gap:10px;margin-bottom:20px;font-size:13px;color:#555;line-height:1.65;}
.terms-check input[type="checkbox"]{width:16px;height:16px;flex-shrink:0;margin-top:2px;}
.terms-check a{color:#1a1a1a;text-decoration:underline;}
.auth-footer{text-align:center;margin-top:24px;font-size:14px;color:#555;}
.auth-footer a{color:#1a1a1a;font-weight:700;text-decoration:underline;}

/* アバターアップロード */
.avatar-upload-wrap{display:flex;align-items:center;gap:20px;padding:16px;background:#f8f8f5;border:1.5px dashed #ccc;border-radius:6px;}
.avatar-preview{width:80px;height:80px;border-radius:50%;overflow:hidden;background:#e8e8e4;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.avatar-upload-btn-wrap{flex:1;}
.btn-avatar-upload{display:inline-block;padding:8px 16px;background:#1a1a2e;color:#fff !important;border-radius:4px;font-size:13px;font-weight:700;cursor:pointer;}

/* ===== ヘッダー ユーザードロップダウン ===== */
.header-user{position:relative;}
.header-user-trigger{display:flex;align-items:center;gap:8px;cursor:pointer;padding:4px 8px;border-radius:6px;transition:background .15s;}
.header-user-trigger:hover{background:rgba(0,0,0,.05);}
.header-user-info{display:flex;flex-direction:column;line-height:1.2;}
.header-user-name{font-size:13px;font-weight:700;color:#fff;}
.header-user-rank{font-size:11px;font-weight:700;}
/* ランクごとの文字色（ヘッダー紺背景向け・コントラスト確保） */
.header-user-rank.rank-beginner { color:#B0B8C8; }   /* グレー     contrast≈4.5 */
.header-user-rank.rank-standard { color:#D4956A; }   /* ブロンズ   contrast≈4.6 */
.header-user-rank.rank-advance  { color:#CBD5E1; }   /* シルバー   contrast≈6.8 */
.header-user-rank.rank-expert   { color:#D4AF37; }   /* ゴールド   contrast≈7.0 */
.header-user-caret{font-size:11px;color:#555;transition:transform .2s;}
.header-user-dropdown{
  position:absolute;top:calc(100% + 8px);right:0;
  min-width:160px;
  background:#fff;border:1.5px solid #e4e4e0;border-radius:8px;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .18s,visibility .18s,transform .18s;
  z-index:200;
  overflow:hidden;
}
@media (max-width:780px){
.header-user-dropdown{
  top:-20px;
}
}
.header-user-dropdown.is-open{opacity:1;visibility:visible;transform:translateY(0);}
.header-dropdown-item{display:flex;align-items:center;gap:8px;padding:12px 16px;font-size:14px;font-weight:600;color:#1a1a1a;text-decoration:none;transition:background .12s;}
.header-dropdown-item:hover{background:#f6f6f4;}
.header-dropdown-item--logout{color:#B91C1C;border-top:1px solid #f0f0ec;}

/* ===== マイページ ===== */
.mypage-header{background:#1a1a2e;padding:32px 0;}
.mypage-user{display:flex;align-items:center;gap:20px;}
.mypage-user .pa-avatar{border-color:#fff;}
.mypage-user-info h2{font-size:20px;font-weight: 600;color:#fff;margin-bottom:4px;}
.mypage-user-info p{font-size:14px;color:#555;}
.mypage-body{padding:40px 24px 80px;}
.mp-section{background:#fff;border:1.5px solid #e4e4e0;border-radius:8px;padding:0;margin-bottom:28px;overflow:hidden;}
.mp-section-head{padding:20px 24px 16px;border-bottom:1.5px solid #e4e4e0;}
.mp-section-head h2{font-size:16px;font-weight: 600;color:#1a1a1a;}
.mp-section > .form-field,
.mp-section > .form-row,
.mp-section > div:not(.mp-section-head){padding:15px 24px;}
.mp-section > .form-field:first-of-type,
.mp-section > div[style*="margin-bottom:24px"]{padding:20px 10px 0;}
.mp-section > .form-field{padding-left:24px;padding-right:24px;}
.mp-section > .form-row{padding:0 24px 18px;}
.mp-section > button.btn-auth-primary{margin:20px 24px 24px;width:calc(100% - 48px);}

/* mp-section内のform要素 spacing */
/* .mp-section .form-field{padding-left:24px;padding-right:24px;} */
/* .mp-section .form-field:last-child{padding-bottom:24px;} */

/* 退会ゾーン */
.danger-zone{padding:20px 24px 24px;}
.danger-zone h3{font-size:15px;font-weight:700;color:#B91C1C;margin-bottom:8px;}
.danger-zone p{font-size:14px;color:#555;margin-bottom:16px;}
.btn-danger{display:inline-block;padding:10px 20px;border:1.5px solid #B91C1C;color:#B91C1C;border-radius:4px;font-size:13px;font-weight:700;text-decoration:none;transition:background .15s,color .15s;}
.btn-danger:hover{background:#B91C1C;color:#fff;}
.btn-avatar-upload:hover{opacity:.85;}

/* 一覧に戻るリンク */
.back-to-archive{margin-top:40px;padding-top:28px;border-top:1px solid #e4e4e0;}
.back-to-archive__link{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:700;color:#555;text-decoration:none;transition:color .15s;}
.back-to-archive__link:hover{color:var(--navy,#1a1a2e);}

/* ===== TOPページ ACADEMYセクション ===== */

/* 非ログイン時CTA */
.academy-top-cta{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;
  background:linear-gradient(90deg,#071B3A,#1E448A);
  border-radius:10px;padding:24px 28px;margin-bottom:28px;
}
.academy-top-cta__text strong{display:block;font-size:16px;font-weight: 600;color:#fff;margin-bottom:6px;}
.academy-top-cta__text p{font-size:13px;color:rgba(255,255,255,.7);line-height:1.6;}
.academy-top-cta__btns{display:flex;gap:12px;flex-shrink:0;flex-wrap:wrap;}
.academy-top-cta__btn--primary{
  display:inline-block;padding:11px 24px;
  background:#fff;color:#1a1a2e;
  font-size:14px;font-weight: 600;border-radius:4px;text-decoration:none;
  transition:opacity .15s;white-space:nowrap;
}
.academy-top-cta__btn--primary:hover{opacity:.88;}
.academy-top-cta__btn--secondary{
  display:inline-block;padding:11px 24px;
  background:transparent;color:#fff;
  border:1.5px solid rgba(255,255,255,.6);
  font-size:14px;font-weight:700;border-radius:4px;text-decoration:none;
  transition:border-color .15s,background .15s;white-space:nowrap;
}
.academy-top-cta__btn--secondary:hover{border-color:#fff;background:rgba(255,255,255,.1);}

/* ログイン時 受講ステータスバー */
.academy-status-bar{
  display:flex;align-items:center;flex-wrap:wrap;gap:16px;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:10px;
  padding:20px 24px;margin-bottom:28px;
}
.academy-status-bar__left{display:flex;align-items:center;gap:12px;}
.academy-status-bar__info{display:flex;flex-direction:column;gap:2px;}
.academy-status-bar__label{font-size:11px;color:rgba(255,255,255,.55);font-weight:700;letter-spacing:.04em;}
.academy-status-bar__name{font-size:15px;font-weight: 600;color:#fff;}
.academy-status-bar__rank{display:flex;flex-direction:column;gap:8px;min-width:180px;}

@media (max-width:768px) {
  .academy-status-bar__rank {
    width: 100%;
  }
}


.academy-status-bar__progress-wrap{display:flex;align-items:center;gap:10px;}
.academy-status-bar__progress-bar{flex:1;height:6px;background:rgba(255,255,255,.2);border-radius:99px;overflow:hidden;}
.academy-status-bar__progress-fill{height:100%;background:linear-gradient(90deg,#7db8ff,#fff);border-radius:99px;transition:width .4s;}
.academy-status-bar__points{font-size:12px;font-weight:700;color:rgba(255,255,255,.7);white-space:nowrap;}
.academy-status-bar__btn{
  margin-left:auto;display:inline-block;padding:10px 20px;
  background:#fff;color:#1a1a2e;font-size:13px;font-weight:700;
  border-radius:4px;text-decoration:none;white-space:nowrap;transition:opacity .15s;
}
.academy-status-bar__btn:hover{opacity:.85;}

/* ===== TOPページ 今週のピックアップ カード =====
   デザインファイル（index.html #academy）の「今週の実務講座」に準拠
   ========================================== */

/* セクションラベル */
.academy-sec .academy-section-label{
  font-size:13px;
  font-weight: 600;
  color:var(--navy,#1a1a2e);
  margin-bottom:12px;
  letter-spacing:.02em;
}
.academy-sec .academy-section-label::before{
  content:'';
  display:inline-block;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--navy,#1a1a2e);
  margin-right:8px;
  vertical-align:2px;
}

/* グリッド：2×2 */
.academy-sec .academy-card-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

/* カード本体 */
.academy-sec .academy-card{
  background:#fff;
  border:1px solid var(--line,#e4e4e0) !important;
  border-radius:4px !important;
  overflow:hidden;
  box-shadow:0 1px 4px rgba(0,0,0,.04) !important;
  text-decoration:none;
  display:block;
  transition:box-shadow .18s,transform .18s;
}
.academy-sec .academy-card:hover{
  box-shadow:0 6px 18px rgba(0,0,0,.09) !important;
  transform:translateY(-3px);
}

/* サムネイル */
.academy-sec .academy-card .ac-img{
  position:relative;
  overflow:hidden;
  height:150px;
}
.academy-sec .academy-card .ac-img img{
  width:100%;
  height:150px;
  object-fit:cover;
  display:block;
}
/* No Image プレースホルダー */
.academy-sec .academy-card .ac-img > div{
  height:150px;
  background:radial-gradient(circle at 18% 20%,rgba(30,68,138,.15),transparent 40%),
             linear-gradient(135deg,#EFF6FF,#F0F7FF);
  display:flex;align-items:center;justify-content:center;
  color:#93C5FD;font-size:12px;font-weight:700;letter-spacing:.04em;
}

/* 動画時間バッジ */
.ac-duration{
  position:absolute;bottom:6px;right:6px;
  background:rgba(0,0,0,.68);color:#fff;
  font-size:11px;font-weight:700;
  padding:2px 7px;border-radius:3px;
  letter-spacing:.02em;
}

/* ロックバッジ */
.ac-lock{
  position:absolute;top:6px;right:6px;
  font-size:15px;line-height:1;
}

/* サムネイル画像（placeholder.svg 含む） */
.academy-sec .academy-card .ac-img img,
.academy-sec .academy-card .ac-thumb {
  display:block;
  width:100%;
  height:150px;
  object-fit:cover;
}

.academy-pickup {
  flex-direction: column;
}
.academy-sec .academy-card-grid {
  width: 100%;
}

/* カード本文エリア */
.academy-sec .academy-card .ac-body{
  padding:12px 14px 14px;
}

/* ランクレベルバッジ */
.academy-sec .academy-card .ac-level{
  display:inline-block;
  font-size:11px;font-weight:700;
  padding:2px 8px;
  border-radius:2px;
  margin-bottom:6px;
  letter-spacing:.02em;
}
.academy-sec .ac-level.basic    { background:#EFF6FF; color:#1E448A; }
.academy-sec .ac-level.advanced { background:#60A5FA; color:#fff; }
.academy-sec .ac-level.master   { background:linear-gradient(135deg,#1A1200,#2D2000); color:#D4AF37; }

/* タイトル */
.academy-sec .academy-card .ac-title{
  font-size:14px;
  font-weight:700;
  line-height:1.55;
  color:#1a1a1a;
  margin-bottom:6px;
  /* 3行で省略 */
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* メタ情報（日付・カテゴリ・時間） */
.academy-sec .academy-card .ac-meta{
  font-size:11px;
  color:#555;
  line-height:1.5;
}

/* レスポンシブ */
@media(max-width:600px){
  .academy-top-cta{flex-direction:column;align-items:flex-start;}
  .academy-status-bar{flex-direction:column;align-items:flex-start;}
  .academy-status-bar__btn{margin-left:0;width:100%;text-align:center;}
  .academy-sec .academy-card-grid{grid-template-columns:1fr !important;}
}

/* =========================================================
   フェロープロフィールページ
   ========================================================= */
.fellow-badge {
  display:inline-block;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  padding:3px 10px;
  border-radius:999px;
  background:linear-gradient(135deg,#1a1a2e,#2d2d4e);
  color:#a5b4fc;
  border:1px solid rgba(165,180,252,.35);
}
.mp-section-desc {
  font-size:13px;
  color:#555;
  margin:4px 0 0;
  font-weight:400;
}
.sns-label {
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:#444;
  margin-bottom:6px;
}
.sns-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:4px;
  font-size:12px;
  font-weight:900;
  flex-shrink:0;
}
.sns-icon--x        { background:#000; color:#fff; font-style:normal; }
.sns-icon--note     { background:#41C9B4; color:#fff; font-style:normal; border-radius:50%; }
.sns-icon--instagram{ background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.sns-icon--youtube  { background:#FF0000; color:#fff; }

/* =========================================================
   FAQページ
   ========================================================= */
.faq-hero {
  background:#f6f6f4;
  border-bottom:1px solid #e0e0dc;
  padding:36px 0 32px;
}
.faq-hero h1 { font-size:28px; font-weight:900; margin-bottom:8px; }
.faq-hero p  { font-size:15px; color:#666; line-height:1.7; }

.faq-nav {
  background:#fff;
  border-bottom:1px solid #e0e0dc;
  position:sticky;
  top:64px;
  z-index:50;
}
.faq-nav-inner {
  display:flex;
  overflow-x:auto;
  scrollbar-width:none;
}
.faq-nav-inner::-webkit-scrollbar { display:none; }
.faq-nav-btn {
  font-size:13px;
  font-weight:600;
  padding:14px 22px;
  color:#555;
  text-decoration:none;
  border-bottom:3px solid transparent;
  white-space:nowrap;
  transition:color .15s;
  display:block;
}
.faq-nav-btn:hover,
.faq-nav-btn.active { color:#1a1a1a; border-bottom-color:#1a1a1a; }

.faq-layout {
  display:flex;
  gap:40px;
  padding-top:36px;
}
.faq-main { flex:1; min-width:0; }

.faq-section { margin-bottom:48px; }
.faq-section h2 {
  font-size:20px;
  font-weight: 600;
  padding-bottom:10px;
  border-bottom:2px solid #1a1a2e;
  margin-bottom:20px;
}

.faq-item {
  background:#fff;
  border:1px solid #e4e4e0;
  border-radius:4px;
  margin-bottom:10px;
  overflow:hidden;
}
.faq-q {
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px 20px !important;
  cursor:pointer;
  user-select:none;
}
@media (max-width:780px){
.faq-q-text {
  padding: 10px 5px !important;
}
.faq-q {
  align-items: center;
}
}
.faq-q:hover { background:#fafaf8; }
.faq-q-icon {
  padding: 16px 22px !important;
    width: 20px;
    height: 45px;
    background: #1a1a2e;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.faq-q-text { font-size:15px; font-weight:700; line-height:1.55; flex:1; padding-bottom:0 !important;}
.faq-toggle {
  width:24px; height:24px;
  border:1.5px solid #ccc; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color:#555; flex-shrink:0;
  margin-top:1px; font-weight:700;
  padding: 15px 15px !important;
}
.faq-item--open .faq-toggle { border-color:#1a1a2e; color:#1a1a2e; }
.faq-a {
  padding:0 20px 18px 60px;
  font-size:15px; color:#555; line-height:1.8;
}
.faq-a a { color:#1a5a20; text-decoration:underline; }

/* サイドバー */
.faq-sidebar { width:220px; flex-shrink:0; padding-top:4px; }
.faq-sidebar-inner {
  position:sticky; top:120px;
  background:#fff;
  border:1px solid #e4e4e0;
  border-radius:4px;
  padding:18px 16px;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
}
.faq-sidebar-head {
  font-size:13px; font-weight: 600;
  border-bottom:2px solid #1a1a2e;
  padding-bottom:8px; margin-bottom:12px;
}
.faq-sidebar-nav { list-style:none; }
.faq-sidebar-nav li { border-bottom:1px solid #eee; }
.faq-sidebar-nav li:last-child { border-bottom:none; }
.faq-sidebar-nav a {
  display:block; padding:8px 0;
  font-size:14px; color:#333; text-decoration:none;
}
.faq-sidebar-nav a:hover { color:#1a1a2e; }
.faq-sidebar-cta { margin-top:16px; padding-top:14px; border-top:1px solid #eee; }
.faq-sidebar-cta a {
  display:block; text-align:center;
  padding:10px; background:#1a1a2e; color:#fff;
  font-size:13px; font-weight:700; text-decoration:none; border-radius:4px;
}
.faq-sidebar-cta a:hover { opacity:.85; }

/* お問い合わせブロック */
.faq-contact-block {
  background:#1a1a2e;
  color:#fff;
  border-radius:6px;
  padding:36px 40px;
  margin-bottom:36px;
}
.faq-contact-block h2 { font-size:22px; font-weight:900; color:#fff; margin-bottom:8px; }
.faq-contact-block > p { font-size:15px; color:#555; line-height:1.7; margin-bottom:28px; }

/* CF7 フォームスタイル上書き */
.faq-contact-block .cf7-grid {
  display:flex; flex-direction:column; gap:16px; margin-bottom:16px;
}
.faq-contact-block .cf7-field { display:flex; flex-direction:column; gap:6px; }
.faq-contact-block label { font-size:13px; font-weight:700; color:#ddd; }
.faq-contact-block .req {
  background:#B91C1C; color:#fff;
  font-size:10px; font-weight:700;
  padding:1px 5px; border-radius:2px; margin-left:4px;
}
.faq-contact-block .wpcf7-form-control:not([type=submit]) {
  background:#2a2a40;
  border:1.5px solid #444;
  border-radius:4px;
  padding:10px 14px;
  font-size:14px;
  color:#eee;
  font-family:inherit;
  width:100%;
  box-sizing:border-box;
  resize:vertical;
}
.faq-contact-block .wpcf7-form-control:focus { outline:none; border-color:#6366F1; }
.faq-contact-block .wpcf7-form-control::placeholder { color:#666; }
.faq-contact-block select.wpcf7-form-control option { background:#2a2a40; }
.cf7-submit-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  margin-top:8px;
}
.cf7-submit-row p { font-size:13px; color:#555; line-height:1.6; }
.cf7-submit-row a { color:#555; }
.faq-contact-block .wpcf7-submit {
  padding:14px 40px;
  background:#fff; color:#1a1a2e;
  font-size:15px; font-weight: 600;
  border:none; border-radius:4px;
  cursor:pointer; white-space:nowrap;
}
.faq-contact-block .wpcf7-submit:hover { opacity:.9; }
.faq-contact-block .wpcf7-response-output {
  margin-top:16px; padding:12px 16px;
  border-radius:4px; font-size:14px;
  border-color:#555 !important;
  color:#555;
}

@media (max-width:768px) {
  .faq-layout { flex-direction:column; }
  .faq-sidebar { width:100%; }
  .faq-sidebar-inner { position:static; }
  .faq-contact-block { padding:24px 20px; }
  .cf7-submit-row { flex-direction:column; align-items:flex-start; }
}


/* ---------------------------------------------------------
   c-badge
--------------------------------------------------------- */
.c-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}

.crosstalk-img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.tagbar-search form {
  display: flex;
  width: 100%;
  align-items: center;
}

.tagbar-search input {
  flex: 1;
}

.tagbar-search button {
  margin-left: auto;
}

.header-actions.mobile-header-actions {
  display: block !important;
  padding: 20px;
}
@media (max-width:780px){
.publisher-item {
  flex-direction: column;
 justify-content: center;
}
.publisher-img {
  margin: 0 auto;
}
.publisher-items {
  width: 130px;
  text-align: center;
  margin: 0 auto;
  display: block !important;
}
.publisher-neme {
  text-align: center;
}
}

.rank-badge.basic {
    background: rgba(30, 68, 138, .10);
    color: #93C5FD;
    border: 1px solid #93C5FD;
}
.rank-badge.advanced, .rank-badge.advance {
    background: rgb(185 28 28 / 22%);
    color: #ec8484;
    border: 1px solid rgb(255 134 134 / 69%);
}

@media (max-width: 768px) {
  .mypage-user {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
  }
  .mypage-actions {
    flex-direction: column;
  }
}

.mp-section > .form-field .sns-label {
  color: #444;
}

.tag-row > .badge.badge-cat {
      padding: 8px 10px 5px !important;
}


/* ===== フェロー詳細ページ ===== */
.fellow-detail-profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 40px;
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 10px;
}
.fellow-detail-avatar img,
.fellow-detail-avatar .pa-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fellow-detail-name {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
}
.fellow-detail-org {
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
}
.fellow-detail-bio {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}
.fellow-detail-sns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fellow-sns-btn {
  font-size: 12px;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.fellow-sns-btn:hover { border-color: #1E448A; color: #1E448A; }

/* 詳細プロフィールセクション */
.fellow-profile-sections {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fellow-profile-section {
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 10px;
  padding: 28px 32px;
}
.fellow-profile-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1E448A;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EFF6FF;
}
.m-mtf__set { margin-bottom: 30px; }

.fellow-profile-section-body {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.fellow-profile-section-body p { margin: 0 0 10px; }
.fellow-profile-section-body p:last-child { margin-bottom: 0; }

/* 執筆記事リスト */
.fellow-articles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.fellow-article-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 8px;
  transition: box-shadow 0.15s;
}
.fellow-article-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.fellow-article-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
}
.fellow-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fellow-article-body { flex: 1; }
.fellow-article-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 6px;
}
.fellow-article-meta { font-size: 12px; color: #555; }

/* 問い合わせ */
.fellow-contact-box {
  margin-top: 16px;
  padding: 24px 28px;
  background: #F8FAFC;
  border: 1px solid #e4e4e0;
  border-radius: 8px;
}
.fellow-contact-text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 12px;
}
.fellow-contact-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #1E448A;
  text-decoration: none;
}
.fellow-contact-link:hover { text-decoration: underline; }

/* 戻るリンク */
.fellow-back-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}
.fellow-back-link:hover { color: #1E448A; }

/* カードホバー（一覧ページ） */
.editor-card--link { transition: box-shadow 0.15s, transform 0.15s; }
.editor-card--link:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }

@media (max-width: 640px) {
  .fellow-detail-profile { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .fellow-article-thumb { width: 72px; height: 52px; }
}
/* ===== お問い合わせページ ===== */

/* ヒーロー：ライトトーン */
.contact-hero {
  background: #fff;
  border-bottom: 1px solid #e4e4e0;
  padding: 48px 0 40px;
}
.contact-hero-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #1E448A;
  margin-bottom: 10px;
}
.contact-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 14px;
  line-height: 1.3;
}
.contact-hero-sub {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ページ本体 */
.contact-page-wrap {
  padding-top: 40px;
  padding-bottom: 72px;
}
.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* 案内テキスト */
.contact-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
  padding: 16px 20px;
  background: #F0F6FF;
  border-left: 4px solid #1E448A;
  border-radius: 0 6px 6px 0;
}
.contact-intro a { color: #1E448A; text-decoration: underline; }

/* 区分カード */
.contact-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
.contact-cat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-cat-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-cat-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: #1a1a1a; }
.contact-cat-desc  { font-size: 12px; color: #555; line-height: 1.6; }

/* フォームブロック */
.contact-form-block {
  padding: 40px 44px;
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.contact-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e4e0;
}

/* 必須ラベル */
.contact-form-block .req,
.contact-form-block abbr.required,
.contact-form-block .wpcf7-required-mark {
  display: inline-block;
  background: #B91C1C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0;
}

/* 入力行間の余白 */
.contact-form-block .wpcf7 p,
.contact-form-block .wpcf7 .cf7-field,
.contact-form-block .wpcf7 br + label {
  display: block;
  margin-bottom: 24px !important;
}
.contact-form-block .wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
}

/* CF7 フォーム要素をライトトーンに統一 */
.contact-form-block .wpcf7 input[type="text"],
.contact-form-block .wpcf7 input[type="email"],
.contact-form-block .wpcf7 input[type="tel"],
.contact-form-block .wpcf7 select,
.contact-form-block .wpcf7 textarea {
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 6px !important;
  color: #1a1a1a !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.15s !important;
}
.contact-form-block .wpcf7 input:focus,
.contact-form-block .wpcf7 select:focus,
.contact-form-block .wpcf7 textarea:focus {
  border-color: #1E448A !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(30,68,138,0.1) !important;
}
.contact-form-block .wpcf7 input[type="submit"] {
  background: #1E448A !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 36px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}
.contact-form-block .wpcf7 input[type="submit"]:hover {
  background: #163670 !important;
}
.contact-form-block .wpcf7 br { display: none; }
.contact-form-block .wpcf7 .wpcf7-form-control-wrap { display: block; }

@media (max-width: 640px) {
  .contact-categories   { grid-template-columns: 1fr; }
  .contact-form-block   { padding: 24px 20px; }
  .contact-hero-title   { font-size: 24px; }
}

/* ===== How to use セクション（Aboutページ） ===== */
.howto-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: #F0F6FF;
  border-left: 4px solid #1E448A;
  border-radius: 0 6px 6px 0;
}
.howto-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e4e4e0;
}
.howto-content-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.howto-content-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 8px;
}
.howto-content-label {
  flex-shrink: 0;
  width: 88px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 0;
  border-radius: 4px;
  letter-spacing: .03em;
  margin-top: 2px;
}
.howto-label--agenda    { background: #1E448A; color: #fff; }
.howto-label--report    { background: #166534; color: #fff; }
.howto-label--news      { background: #B45309; color: #fff; }
.howto-label--crosstalk { background: #6D28D9; color: #fff; }
.howto-label--academy   { background: #0F172A; color: #fff; }
.howto-content-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.howto-content-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}
.howto-text {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin: 0 0 12px;
}
.howto-list {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin: 0 0 16px;
  padding-left: 1.4em;
}
.howto-list li { margin-bottom: 4px; }

/* ===== フェロー依頼ボタン（詳細ページ） ===== */
.fellow-request-btn {
  display: inline-flex;
  align-items: center;
  background: #1E448A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.fellow-request-btn:hover { background: #163670; color: #fff; }

/* ===== 依頼フォームページ ===== */
.fellow-request-target {
  background: #F0F6FF;
  border: 1px solid #C7D9F5;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 36px;
}
.fellow-request-target-label {
  font-size: 11px;
  font-weight: 700;
  color: #1E448A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fellow-request-target-card {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fellow-request-target-card img,
.fellow-request-target-card .pa-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fellow-request-target-name {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}
.fellow-request-target-sub {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.fellow-request-form {
  background: #fff;
  border: 1px solid #e4e4e0;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.freq-field {
  margin-bottom: 24px;
}
.freq-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
}
.freq-req {
  display: inline-block;
  background: #B91C1C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.freq-opt {
  display: inline-block;
  background: #e4e4e0;
  color: #555;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.freq-field input[type="text"],
.freq-field input[type="email"],
.freq-field select,
.freq-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.freq-field input:focus,
.freq-field select:focus,
.freq-field textarea:focus {
  border-color: #1E448A;
  outline: none;
  box-shadow: 0 0 0 3px rgba(30,68,138,0.1);
}
.freq-field textarea { resize: vertical; line-height: 1.7; }
.freq-note {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #f8f8f5;
  border-radius: 6px;
}
.freq-submit {
  display: inline-block;
  background: #1E448A;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 48px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.freq-submit:hover { background: #163670; }

@media (max-width: 640px) {
  .fellow-request-form { padding: 24px 20px; }
}

/* ============================================================
   wpForo 掲示板：サイトのフォントに統一
   （ボタン等の色は wpForo管理画面「色とスタイル」の Color #12 で調整）
   ============================================================ */
#wpforo,
#wpforo #wpforo-wrap,
#wpforo #wpforo-wrap *:not(i):not(.fa):not([class*="fa-"]):not([class*="icon"]):not([class*="wpf-ico"]) {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif !important;
}
