/* Generated from documents/html/pc.html. Edit source mock first when changing the design. */
    :root {
      --navy: #1A1A2E;
      --accent: #E94560;
      --deadline: #FFB347;
      --page: #FFFFFF;
      --card: #FFFFFF;
      --text: #333333;
      --sub: #888888;
      --border: #E0E0E0;
      --green: #2E8754;
      --shadow: 0 10px 30px rgba(26, 26, 46, .08);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-bottom: 72px;
    }

    body {
      margin: 0;
      background: var(--page);
      color: var(--text);
      font-family: "Noto Sans JP", system-ui, sans-serif;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.65;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input { font: inherit; }
    h1, h2, h3, h4, h5, h6, strong, b { font-weight: 400; }

	    .mobile-only { display: none; }

	    .mobile-audition-search-trigger,
	    .audition-search-modal {
	      display: none;
	    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      height: 64px;
      background: var(--navy);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
    }

    .header-inner {
      width: min(100%, 1440px);
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 48px;
      padding: 0 32px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      width: auto;
      line-height: 1;
      flex: 0 0 auto;
      color: var(--accent);
      font-family: Montserrat, sans-serif;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 32px;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
      flex: 1;
    }

	    .main-nav .nav-link {
	      position: relative;
	      font-weight: 700;
	      transition: color .2s ease;
	    }

	    .main-nav .nav-link:hover {
	      color: #E94560;
	    }

	    .main-nav .nav-link.active {
	      color: var(--accent);
	    }

	    .main-nav .nav-link.active::after {
	      content: "";
	      position: absolute;
	      left: 0;
	      right: 0;
	      bottom: -16px;
	      height: 3px;
	      background: var(--accent);
	    }

	    .nav-link,
    .meta,
    .icon-text {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
    }

    .meta {
      font-size: 11px;
      color: #888888;
    }

    .post-date-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 10px;
      margin-top: 8px;
    }

    .nav-link i,
    .icon-text i {
      min-width: 14px;
      text-align: center;
    }

    .nav-link svg,
    .drawer-nav svg,
    .icon-text svg {
      width: 12px;
      height: 12px;
      flex: 0 0 12px;
      display: block;
    }

    .site-header .search {
      position: relative;
      width: 288px;
      height: 36px;
      border: 0;
      border-radius: 7px;
      background: rgba(255, 255, 255, .12);
      padding: 0 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, .55);
      white-space: nowrap;
      overflow: hidden;
      flex-shrink: 0;
    }

    .site-header .search input[type="search"] {
      min-width: 0;
      width: 100%;
      height: 100%;
      border: 0;
      outline: 0;
      padding: 0 28px 0 0;
      background: transparent;
      color: rgba(255, 255, 255, .86);
      font: inherit;
    }

    .site-header .search input[type="search"]::placeholder {
      color: rgba(255, 255, 255, .55);
      opacity: 1;
    }

    .site-header .search button {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 38px;
      border: 0;
      padding: 0;
      background: transparent;
      cursor: pointer;
    }

    .site-header .search:focus-within {
      background: rgba(255, 255, 255, .18);
    }

    .site-header .search span {
      min-width: 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .site-header .search svg {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      display: block;
    }

    .mobile-actions {
      display: none;
      margin-left: auto;
      align-items: center;
      gap: 3px;
    }

    .icon-button {
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .icon-button svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .mobile-drawer {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(26, 26, 46, .98);
      color: #fff;
      padding: 20px;
      transform: translateX(100%);
      transition: transform .2s ease;
    }

    .mobile-drawer.is-open { transform: translateX(0); }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .drawer-nav {
      display: grid;
      gap: 12px;
      font-size: 16px;
      font-weight: 400;
    }

	    .drawer-nav a {
	      min-height: 48px;
	      display: flex;
	      align-items: center;
	      gap: 10px;
	      border-bottom: 1px solid rgba(255, 255, 255, .12);
	    }

	    .drawer-nav a.active {
	      color: var(--accent);
	    }

    .category-tabs {
      display: none;
      position: sticky;
      top: 52px;
      z-index: 90;
      background: #fff;
      overflow-x: auto;
      border-bottom: 1px solid var(--border);
      scrollbar-width: none;
    }

    .category-tabs::-webkit-scrollbar { display: none; }

    .category-tabs a {
      flex: 0 0 auto;
      padding: 12px 14px 10px;
      min-height: 44px;
      color: #555;
      font-size: 13px;
      font-weight: 400;
      border-bottom: 3px solid transparent;
      white-space: nowrap;
    }

    .category-tabs a.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .hero {
      background:
        linear-gradient(90deg, rgba(26, 26, 46, .9) 0%, rgba(26, 26, 46, .62) 48%, rgba(26, 26, 46, .18) 100%),
        url("../images/top_back_image.png") center / cover no-repeat,
        linear-gradient(180deg, #1A1A2E 0%, #18182b 100%);
      color: #fff;
      min-height: 400px;
      overflow: hidden;
    }

    .hero-inner {
      width: 1200px;
      max-width: calc(100% - 48px);
      margin: 0 auto;
      min-height: 400px;
      display: grid;
      grid-template-columns: 55% 45%;
      align-items: center;
      gap: 32px;
      padding: 48px 0;
    }

    .hero-copy { padding-left: 8px; }

    .pill,
    .category-badge {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      width: fit-content;
      border-radius: 999px;
      font-weight: 400;
      line-height: 1.2;
      white-space: nowrap;
    }

    .pill {
      position: relative;
      background: transparent;
      color: #fff;
      border: 1px solid var(--accent);
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 700;
      margin-left: 20px;
      margin-bottom: 30px;
    }

    .pill::before,
    .pill::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 14px;
      height: 1px;
      transform: translateY(-50%);
    }

    .pill::before {
      right: calc(100% + 10px);
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 72%, #fff 100%);
      box-shadow: 18px 0 8px rgba(255, 255, 255, .7), 18px 0 14px rgba(233, 69, 96, .9);
    }

    .pill::after {
      left: calc(100% + 10px);
      background: linear-gradient(90deg, #fff 0%, var(--accent) 28%, var(--accent) 100%);
      box-shadow: -18px 0 8px rgba(255, 255, 255, .7), -18px 0 14px rgba(233, 69, 96, .9);
    }

    .pill svg {
      width: 11px;
      height: 11px;
      flex: 0 0 11px;
      display: block;
    }

    .hero h1 {
      margin: 0;
      color: #fff;
      font-size: 48px;
      line-height: 1.28;
      font-weight: 400;
      letter-spacing: 0;
    }

    .hero p {
      margin: 24px 0 26px;
      color: #aaa;
      font-size: 16px;
      font-weight: 400;
    }

    .btn {
      display: inline-flex;
      align-items: baseline;
      justify-content: center;
      gap: 10px;
      min-height: 44px;
      border-radius: 4px;
      border: 2px solid transparent;
      padding: 12px 24px;
      font-weight: 400;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
    }

    .btn svg {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      display: block;
    }

    .btn-outline {
      width: 100%;
      background: transparent;
      border-color: var(--accent);
      color: var(--accent);
    }

    .audition-more-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    .audition-more-text-sp {
      display: none;
    }

    .hero-art {
      display: none;
      position: relative;
      height: 280px;
    }

    .mock-card {
      position: absolute;
      width: 295px;
      background: #fff;
      color: var(--text);
      border-radius: 12px;
      padding: 14px;
      box-shadow: 0 18px 36px rgba(0,0,0,.25);
    }

    .mock-card.back {
      right: 48px;
      top: 48px;
      transform: rotate(6deg);
      opacity: .98;
    }

    .mock-card.front {
      right: 120px;
      top: 26px;
      z-index: 2;
      transform: rotate(-3deg);
    }

    .mock-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
    }

    .mock-card h3 {
      margin: 9px 0 8px;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 400;
    }

    .deadline {
      display: inline-flex;
      align-items: baseline;
      gap: 5px;
      background: var(--deadline);
      color: #333;
      border-radius: 6px;
      padding: 4px 8px;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.1;
    }

    .deadline svg {
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      display: block;
    }

    .layout {
      width: 1200px;
      max-width: calc(100% - 48px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 70%) minmax(320px, 30%);
      gap: 32px;
      padding: 0 0 96px;
      align-items: stretch;
    }

    .main-column {
      align-self: start;
    }

    .section { margin-bottom: 48px; }

    #audition { margin-top: 0; }

    .section-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 14px 0 22px;
      padding-left: 18px;
      border-left: 3px solid var(--accent);
      font-size: 22px;
      line-height: 1.3;
      font-weight: 400;
      color: var(--text);
      letter-spacing: 0;
    }

    .section-title i,
    .section-title svg {
      color: var(--accent);
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      min-width: 14px;
      display: block;
    }

    .article-list {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 24px 8px;
    }

    .article-row {
      display: block;
      padding: 13px 0;
      border-bottom: .5px solid var(--border);
      min-height: 116px;
    }

    .article-row-link {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      align-items: start;
      gap: 16px;
      color: inherit;
      text-decoration: none;
    }

    .article-content {
      align-self: start;
      min-width: 0;
      margin-top: -4px;
      padding-top: 0;
    }

    .article-row:last-child { border-bottom: 0; }

    .thumb-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 90px;
      border-radius: 8px;
      background: #fff;
      overflow: hidden;
      clip-path: inset(0 round 8px);
      flex: 0 0 120px;
      transform: translateZ(0);
      line-height: 0;
    }

    .thumb {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
      clip-path: inset(0 round 8px);
      transform-origin: center bottom;
      transition: transform .25s ease;
    }

    .category-badge {
      color: #fff;
      padding: 7px 9px;
      font-size: 11px;
      margin-bottom: 3px;
    }

    .category-badge svg {
      width: 11px;
      height: 11px;
      flex: 0 0 11px;
      display: block;
    }

    .cat-audition {
      background: var(--accent);
      font-weight: 700;
      padding: 3px 10px;
      margin-bottom: 5px;
    }
    .cat-basic {
      background: var(--navy);
      font-weight: 700;
    }
    .cat-tips {
      background: var(--green);
      font-weight: 700;
    }

    .article-title {
      margin: 0 0 7px;
      font-size: 15px;
      line-height: 1.35;
      font-weight: 700;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .article-row-link:hover .article-title {
      color: var(--accent);
    }

    .article-row-link:hover .thumb {
      transform: scale(1.04);
    }

    .article-meta {
      display: flex;
      align-items: center;
	      gap: 3px;
      color: var(--sub);
      font-size: 12px;
      font-weight: 400;
      flex-wrap: nowrap;
      white-space: nowrap;
    }

    .no-posts {
      margin: 0;
      padding: 20px 0;
      color: var(--sub);
      font-size: 13px;
    }

    .meta-chip {
      display: inline-flex;
      align-items: baseline;
      gap: 5px;
      border: 1px solid #d6d6d6;
      border-radius: 4px;
      padding: 3px 8px;
      background: #fff;
      color: #666;
    }

    .meta svg,
    .meta-chip svg,
    .date svg {
      width: 10px;
      height: 10px;
      flex: 0 0 10px;
      display: block;
    }

    .date {
      margin-left: auto;
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      color: var(--sub);
    }

    .date + .date {
      margin-left: 8px;
    }

    .more-wrap { margin-top: 22px; }

    .basic-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 32px;
    }

    .basic-more-wrap .btn {
      align-items: center;
      width: 300px;
      border-color: #2563eb;
      color: #2563eb;
      white-space: nowrap;
    }

    .basic-more-wrap .btn:hover {
      background: #F3F4F6;
      color: #2563eb;
    }

    .card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .feature-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 1px 0 rgba(0,0,0,.02);
    }

    .feature-thumb {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 160px;
      width: 100%;
      overflow: hidden;
      background: #fff;
    }

    .feature-card img {
      display: block;
      width: 100%;
      height: auto;
      transform-origin: center bottom;
      transition: transform .25s ease;
    }

    .feature-card-link {
      display: block;
      height: 100%;
      color: inherit;
      text-decoration: none;
    }

    .feature-body {
      padding: 12px 14px 14px;
    }

    .feature-card h3 {
      margin: 4px 0 0px;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
    }

    .feature-card-link:hover h3 {
      color: var(--accent);
    }

    .feature-card-link:hover img {
      transform: scale(1.04);
    }

    .scroll-row {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 220px;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 12px;
      scroll-snap-type: x proximity;
      scrollbar-gutter: stable;
    }

    .scroll-row > * {
      scroll-snap-align: start;
    }

    .tips-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .tips-card .feature-thumb {
      height: 140px;
    }

    .tips-card .feature-body { padding: 14px; }

    .tips-card h3 {
      margin: 3px 0 3px;
      font-size: 13px;
      line-height: 1.55;
      font-weight: 700;
    }

    .latest-section {
      border-top: 1px solid var(--border);
      padding-top: 32px;
    }

    .latest-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .latest-card {
      border-bottom: 1px solid var(--border);
      padding-bottom: 32px;
    }

    .latest-card-link {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 24px;
      color: inherit;
      text-decoration: none;
    }

    .latest-thumb {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 280px;
      height: 180px;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      transform: translateZ(0);
    }

    .latest-thumb img {
      display: block;
      width: 100%;
      height: auto;
      transform-origin: center bottom;
      transition: transform .25s ease;
    }

    .latest-content {
      display: flex;
      min-width: 0;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 4px;
    }

    .cat-latest {
      background: var(--accent);
      font-weight: 700;
      margin-bottom: 5px;
    }

    .latest-title {
      margin-bottom: 10px;
      color: var(--text);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 700;
    }

    .latest-excerpt {
      color: var(--text);
      font-size: 14px;
      line-height: 1.8;
      font-weight: 400;
    }

    .latest-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      margin-top: auto;
      padding-top: 20px;
    }

    .latest-dates {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 10px;
    }

    .latest-date {
      color: var(--sub);
      font-size: 12px;
    }

    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .read-more svg {
      width: 14px;
      height: 14px;
    }

    .latest-card-link:hover .latest-title,
    .latest-card-link:hover .read-more {
      color: var(--accent);
    }

    .latest-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 32px;
    }

    .btn-latest-outline {
      align-items: center;
      width: 300px;
      border-color: var(--navy);
      color: var(--navy);
      background: transparent;
      white-space: nowrap;
      font-weight: 700;
    }

    .btn-latest-outline:hover {
      background: #F3F4F6;
      border-color: #6B7280;
      color: var(--navy);
    }

    .faq-section {
      margin-top: 38px;
      border-radius: 12px;
      padding: 48px 48px 40px;
      background: #F0F4FF;
    }

    .faq-title {
      position: relative;
      margin: 0 0 40px;
      color: var(--navy);
      text-align: center;
      font-size: 22px;
      line-height: 1.45;
      font-weight: 700;
    }

    .faq-title::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -14px;
      width: 36px;
      height: 3px;
      border-radius: 999px;
      background: #4D96FF;
      transform: translateX(-50%);
    }

    .faq-card {
      border: 1px solid #B7D5FF;
      border-radius: 10px;
      padding: 8px 36px;
      background: #fff;
    }

    .faq-item {
      padding: 28px 0;
      border-bottom: 1px solid #ECEFF5;
    }

    .faq-item:last-child {
      border-bottom: 0;
    }

    .faq-row {
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      align-items: start;
      gap: 14px;
    }

    .faq-answer {
      margin-top: 14px;
    }

    .faq-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      color: #fff;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
    }

    .faq-mark-q {
      background: #4D96FF;
      font-size: 15px;
    }

    .faq-mark-a {
      background: #FF7EA6;
      font-size: 14px;
    }

    .faq-question h3 {
      margin: 2px 0 0;
      color: var(--text);
      font-size: 16px;
      line-height: 1.65;
      font-weight: 700;
    }

    .faq-answer p {
      margin: 0;
      color: #555;
      font-size: 14px;
      line-height: 1.9;
      font-weight: 400;
    }

	    .sidebar {
	      --sidebar-accent: var(--accent);
	      --sidebar-strong: var(--navy);
	      --sidebar-card-bg: #fff;
	      --sidebar-banner-start: var(--accent);
	      --sidebar-banner-end: var(--navy);
	      position: relative;
	      align-self: stretch;
	      padding-top: 63px;
	      overflow: visible;
	    }

    .backstage-category-page .sidebar,
    .backstage-guide-page .sidebar {
      padding-top: 0;
    }

    .sidebar-sticky {
      position: sticky;
      top: 120px;
      height: auto;
      max-height: none;
      overflow: visible;
      scrollbar-width: none;
    }

    .sidebar-sticky::-webkit-scrollbar {
      display: none;
    }

    .sidebar-track {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-bottom: 20px;
    }

	    .side-card {
	      background: var(--sidebar-card-bg);
	      border: 1px solid var(--border);
	      border-radius: 12px;
	      padding: 24px;
	    }

    .mobile-panel {
      display: none;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px;
      margin-bottom: 32px;
    }

    .audition-search-form {
      --sidebar-accent: var(--accent);
      --sidebar-strong: var(--navy);
      --sidebar-card-bg: #fff;
    }

    .mobile-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mobile-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 6px 12px;
      background: #fff;
      color: #555;
      font-size: 12px;
      font-weight: 400;
    }

	    .side-banner {
	      min-height: 158px;
	      border-radius: 12px;
	      padding: 24px 20px 24px;
	      background:
	        linear-gradient(135deg, rgba(26, 26, 46, .74) 0%, rgba(233, 69, 96, .48) 100%),
	        url("../images/korea_office.png") center / cover no-repeat,
	        linear-gradient(135deg, var(--sidebar-banner-start) 0%, var(--sidebar-banner-end) 100%);
	      color: #fff;
	    }

    .side-banner p {
      margin: 0;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 400;
      color: #fff;
    }

    .side-banner h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.2;
      font-weight: 700;
    }

	    .side-banner .btn {
      align-items: center;
      margin-top: 16px;
      min-width: 112px;
      min-height: 34px;
      background: #fff;
	      color: var(--sidebar-accent);
      border-radius: 4px;
      padding: 7px 15px;
      font-size: 13px;
      font-weight: 700;
    }

    .side-title {
      margin: 0 0 22px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      line-height: 1.25;
      font-weight: 400;
    }

	    .side-title i,
	    .side-title svg {
	      color: var(--sidebar-accent);
      width: 16px;
      height: 16px;
      min-width: 16px;
      flex: 0 0 16px;
      display: block;
    }

    .office-title {
      font-weight: 700;
    }

    .field-label {
      display: block;
      margin: 0 0 10px;
      color: var(--sub);
      font-size: 12px;
      font-weight: 400;
    }

    .audition-search-text {
      min-height: 40px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 0 12px;
      background: #f8f8f8;
      color: var(--sub);
    }

    .audition-search-text i {
      flex: 0 0 14px;
      color: currentColor;
      font-size: 14px;
      line-height: 1;
    }

    .audition-search-text input {
      width: 100%;
      min-width: 0;
      border: 0;
      padding: 0;
      background: transparent;
      color: var(--text);
      font-size: 12px;
      line-height: 1.4;
      outline: 0;
    }

    .audition-age-range {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--sub);
      font-size: 14px;
    }

    .audition-age-range input {
      width: 100%;
      min-height: 34px;
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 0 12px;
      background: #f8f8f8;
      color: var(--text);
      font-size: 12px;
      line-height: 1.4;
      outline: 0;
    }

    .filter-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 20px;
    }

    .filter-btn,
    .seg-btn {
      min-height: 40px;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1px;
      background: #fbfbfb;
      color: var(--text);
      font-size: 14px;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
    }

    .filter-btn {
      font-size: 14px;
      line-height: 1.2;
      text-align: center;
    }

	    .filter-btn svg,
	    .seg-btn svg,
	    .filter-btn i,
	    .seg-btn i,
	    .filter-btn-icon {
	      width: 14px;
	      height: 14px;
	      flex: 0 0 14px;
	      display: inline-flex;
	      align-items: center;
	      justify-content: center;
	      color: currentColor;
	      line-height: 1;
	    }

	    .filter-btn-icon--image {
	      width: 35px;
	      height: 35px;
	      flex-basis: 35px;
	      display: block;
	      align-self: center;
	      object-fit: contain;
	    }

	    .filter-btn--image-icon {
	      align-items: center;
	      justify-content: flex-start;
	      padding: 6px 14px;
	      text-align: left;
	    }

	    .filter-btn--image-icon .filter-btn-label {
	      display: inline-flex;
	      align-items: center;
	      line-height: 1;
	    }

	    .filter-btn:hover,
	    .seg-btn:hover {
	      border-color: var(--sidebar-accent);
	      background: #fff;
	      color: var(--sidebar-accent);
	    }

	    .filter-btn:hover svg,
	    .seg-btn:hover svg,
		    .filter-btn:hover i,
		    .seg-btn:hover i {
		      color: var(--sidebar-accent) !important;
		    }

	    .filter-btn.active,
	    .seg-btn.active {
	      border-color: var(--sidebar-accent);
	      background: var(--sidebar-accent);
	      color: #fff;
	    }

	    .filter-btn.active svg,
	    .seg-btn.active svg,
	    .filter-btn.active i,
	    .seg-btn.active i {
	      color: #fff !important;
	    }

    .segmented {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 20px;
    }

    .seg-btn {
      min-height: 48px;
      border-radius: 4px;
      color: #555;
      background: #fff;
    }

    .location-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 14px;
      color: var(--sub);
    }

    .location-label svg {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      color: var(--sub) !important;
    }

    .location-tabs {
      gap: 0;
      border: 1px solid #d7d7d7;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
    }

    .location-tabs .seg-btn {
      min-height: 48px;
      border: 0;
      border-right: 1px solid #d7d7d7;
      border-radius: 0;
      background: #fff;
      color: #555;
      font-size: 14px;
      gap: 7px;
    }

    .location-tabs .seg-btn:last-child {
      border-right: 0;
    }

    .location-tabs .seg-btn.active {
      background: var(--navy);
      color: #fff;
      border-color: transparent;
      font-weight: 700;
    }

    .location-tabs .seg-btn svg {
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      color: currentColor !important;
    }

    .place-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid #d7d7d7;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 18px;
      background: #fff;
    }

    .place-tabs button {
      min-height: 48px;
      border: 0;
      border-right: 1px solid #d7d7d7;
      padding: 1px;
      background: #fff;
      color: #555;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }

    .place-tabs button:last-child { border-right: 0; }
	    .place-tabs button.active {
	      background: var(--sidebar-strong);
	      color: #fff;
	      font-weight: 700;
	    }

	    .place-tabs button svg {
	      width: 14px;
	      height: 14px;
	      flex: 0 0 14px;
	      color: currentColor !important;
	    }

	    .place-tabs button i {
	      width: 14px;
	      min-width: 14px;
	      color: currentColor;
	      text-align: center;
	      line-height: 1;
	    }

    .search-submit { width: 100%; min-height: 48px; font-size: 14px; }

    .ranking {
      display: grid;
      gap: 14px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 30px 60px 1fr;
      gap: 12px;
      align-items: center;
      color: inherit;
    }

	    a.rank-item:hover h4 {
	      color: var(--sidebar-accent);
	    }

    .rank-no {
      color: #d0d0d0;
      font-family: Montserrat, Arial, sans-serif;
      font-size: 26px;
      font-weight: 800 !important;
      line-height: 1;
      text-align: center;
    }

	    .rank-item:nth-child(1) .rank-no { color: var(--sidebar-accent); }
    .rank-item:nth-child(2) .rank-no { color: #777; }
    .rank-item:nth-child(3) .rank-no { color: #c88400; }

    .rank-thumb {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 48px;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
    }

    .rank-thumb img {
      display: block;
      width: 100%;
      height: auto;
    }

    .rank-item h4 {
      margin: 0;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 400;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

	    .tag-cloud .tag {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
	      border: 1px solid var(--sidebar-accent);
	      border-radius: 8px;
	      color: var(--sidebar-accent);
      padding: 5px 14px;
      font-size: 13px;
      font-weight: 400;
	      background: #fff;
	    }

    .genre-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 14px;
    }

    .genre-chip {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 2px;
      min-height: 46px;
      border: 2px solid var(--border);
      border-radius: 999px;
      padding: 3px 12px;
      background: #fff;
      color: var(--text);
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
      text-align: left;
      white-space: nowrap;
      transition: border-color .2s ease, color .2s ease;
    }

    .genre-chip i {
      min-width: 14px;
      color: var(--sidebar-accent);
      text-align: center;
      font-size: 12px;
    }

    .genre-chip-icon--image {
      width: 35px;
      height: 35px;
      flex: 0 0 35px;
      display: block;
      object-fit: contain;
    }

    .genre-chip:hover {
      border-color: var(--sidebar-accent);
      color: var(--sidebar-accent);
    }

    .office-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
    }

    .office-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      border: 2px solid var(--sidebar-accent);
      border-radius: 12px;
      padding: 8px 18px;
      background: #fff;
      color: var(--sidebar-accent);
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
      white-space: nowrap;
      transition: background-color .2s ease, color .2s ease;
    }

    .office-chip:hover {
      background: var(--sidebar-accent);
      color: #fff;
    }

	    .sidebar .btn-primary {
	      background: var(--sidebar-accent);
	    }

	    .backstage-howto-page .sidebar {
	      --sidebar-accent: #E94560;
	      --sidebar-strong: #1A1A2E;
	      --sidebar-card-bg: #fff;
	      --sidebar-banner-start: #E94560;
	      --sidebar-banner-end: #1A1A2E;
	      padding-top: 0;
	    }

    .site-footer {
      border-top: 2px solid var(--accent);
      background: var(--navy);
      color: #fff;
      padding: 52px 0 18px;
    }

    .footer-inner {
      width: 984px;
      max-width: calc(100% - 48px);
      margin: 0 auto;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 210px 210px 210px 1fr;
      gap: 48px;
      align-items: start;
    }

    .footer-logo {
      display: inline-block;
      margin-bottom: 18px;
      color: var(--accent);
      font-size: 26px;
      line-height: 1;
      letter-spacing: .04em;
      font-weight: 800;
    }

    .footer-logo:hover {
      color: var(--accent);
    }

    .footer-desc {
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: 12px;
      line-height: 1.9;
      font-weight: 400;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 22px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
    }

    .footer-social a:hover,
    .footer-column a:hover {
      color: #fff;
    }

    .footer-column h2 {
      margin: 0 0 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      color: #fff;
      font-size: 14px;
      line-height: 1.4;
      font-weight: 700;
    }

    .footer-column h2 i {
      margin-right: 8px;
      color: var(--accent);
      font-size: 12px;
    }

    .footer-column a {
      position: relative;
      display: block;
      padding: 7px 0 7px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .72);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 400;
    }

    .footer-column a::before {
      content: "›";
      position: absolute;
      left: 0;
      top: 6px;
      color: var(--accent);
      font-size: 16px;
      line-height: 1;
    }

    .footer-line {
      height: 1px;
      background: rgba(255,255,255,.12);
      margin: 46px 0 16px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 32px;
    }

    .copyright,
    .footer-tagline {
      margin: 0;
      color: rgba(255, 255, 255, .38);
      font-size: 11px;
      line-height: 1.6;
      font-weight: 400;
    }

    .bottom-nav {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 110;
      height: 56px;
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 24px rgba(26, 26, 46, .08);
    }

    .bottom-nav a,
    .bottom-nav button {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      border: 0;
      border-radius: 0;
      padding: 0;
      background: transparent;
      color: var(--sub);
      font-family: inherit;
      font-size: 10px;
      font-weight: 400;
      line-height: 1.2;
      text-decoration: none;
      cursor: pointer;
    }

    .bottom-nav i,
    .bottom-nav svg {
      font-size: 20px;
      width: 20px;
      height: 20px;
      line-height: 1;
      display: block;
    }

    .bottom-nav a.active,
    .bottom-nav button.active {
      color: var(--accent);
    }

    @media (max-width: 1240px) {
      .hero-inner,
      .layout,
      .footer-inner { width: calc(100% - 48px); }
      .header-inner {
        gap: 24px;
        padding: 0 20px;
      }
      .main-nav {
        min-width: 0;
        gap: 20px;
        font-size: 13px;
      }
      .site-header .search {
        width: 220px;
      }
    }

    /* Tablet: common portrait/landscape tablet width */
    @media (min-width: 768px) and (max-width: 1024px) {
      .header-inner {
        gap: 18px;
        padding: 0 16px;
      }
      .main-nav {
        gap: 14px;
        font-size: 12px;
      }
      .site-header .search {
        width: 184px;
        padding: 0 14px;
      }

      .footer-inner {
        width: calc(100% - 48px);
        max-width: none;
      }

      .footer-main {
        grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
        gap: 24px;
      }

      .footer-logo {
        font-size: 22px;
      }

      .footer-desc,
      .footer-column a {
        font-size: 11px;
      }

      .single-audition-search-area .audition-search-form--inline {
        display: block;
      }
    }

    @media (max-width: 767px) {
      .mobile-drawer {
        display: block;
      }

      body {
        font-size: 14px;
        padding-bottom: 72px;
      }

      .desktop-only { display: none !important; }
      .mobile-only { display: block; }

      .site-header {
        height: 52px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        box-shadow: none;
      }

      .header-inner {
        width: 100%;
        position: relative;
        padding: 0 15px;
        gap: 12px;
      }

      .logo {
        font-size: 17px;
      }

      .main-nav,
      .site-header .search {
        display: none;
      }

      .site-header .search.is-open {
        position: absolute;
        left: 15px;
        right: 15px;
        top: calc(100% + 8px);
        z-index: 120;
        width: auto;
        height: 40px;
        display: flex;
        background: #fff;
        color: #888;
        border: 1px solid var(--border);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
      }

      body.header-search-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(0, 0, 0, .28);
        pointer-events: auto;
      }

      .site-header .search.is-open input[type="search"] {
        color: var(--text);
      }

      .site-header .search.is-open input[type="search"]::placeholder {
        color: #888;
      }

      .site-header .search.is-open svg {
        color: #888;
      }

      .site-header .search.is-open > i {
        display: none;
      }

      .site-header .search.is-open button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
      }

      .site-header .search.is-open button::before {
        content: "\f002";
        font-family: "Font Awesome 6 Free";
        font-size: 14px;
        font-weight: 900;
        line-height: 1;
      }

      .mobile-actions {
        display: flex;
      }

      .mobile-actions .js-menu-open {
        display: none;
      }

      .icon-button {
        width: 36px;
        height: 36px;
        font-size: 19px;
        color: rgba(255, 255, 255, .72);
      }

      .category-tabs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        top: 52px;
        height: 54px;
        background: var(--navy);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        overflow: visible;
      }

      .category-tabs a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-width: 0;
        min-height: 54px;
        padding: 5px 4px 6px;
        border-bottom-width: 2px;
        color: rgba(255, 255, 255, .56);
        font-size: 10px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
      }

      .category-tabs a i {
        display: block;
        font-size: 13px;
        line-height: 1;
      }

      .category-tabs a span {
        display: block;
      }

      .category-tabs a.active {
        color: var(--accent);
      }

      .hero {
        min-height: 136px;
      }

      .hero-inner {
        width: 100%;
        min-height: 136px;
        display: block;
        padding: 20px 6px 24px;
      }

      .hero-copy {
        padding-left: 0;
      }

      .pill {
        padding: 6px 9px;
        font-size: 10px;
        margin-bottom: 14px;
      }

      .hero h1 {
        font-size: 25px;
        line-height: 1.32;
      }

      .hero p {
        margin: 10px 0 16px;
        font-size: 12px;
      }

      .hero .btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 14px;
      }

      .hero-art {
        display: none;
      }

      .layout {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        display: block;
        padding: 0px;
      }

      .main-column {
        display: flex;
        flex-direction: column;
      }

	      #audition { order: 1; }
	      .mobile-search-launch-panel { order: 2; }
	      .mobile-search-form {
	        display: flex;
	        flex-direction: column;
	        background: #f4f4f4;
	        padding-bottom: 18px;
	      }
      #basic { order: 3; }
      .mobile-helpful-panel { order: 4; }
      .mobile-panel[aria-label="ジャンルで探す"] { order: 5; }
      #tips { order: 6; }
      #faq { order: 7; }

      .section {
        margin-bottom: 36px;
      }

      .section-title {
        margin-bottom: 16px;
        padding-left: 12px;
        gap: 10px;
        font-size: 20px;
      }

      #audition .section-title {
        min-height: 40px;
        margin: 0;
        padding: 11px 16px;
        border-left: 0;
        background: var(--accent);
        color: #fff;
        font-size: 16px;
        line-height: 1.2;
      }

      #audition .section-title svg {
        color: #fff;
        width: 14px;
        height: 14px;
        flex-basis: 14px;
        min-width: 14px;
      }

      .article-list {
        display: grid;
        gap: 12px;
        border: 0;
        border-radius: 0;
        padding: 12px 0 0;
        background: transparent;
      }

      .article-row {
        min-height: 0;
        margin: 0 14px;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
      }

      .article-row-link {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 14px;
      }

      .thumb-wrap {
        width: 108px;
        height: 82px;
        flex-basis: 108px;
      }

      .category-badge {
        font-size: 10px;
        margin-bottom: 3px;
      }

      .cat-audition {
        width: fit-content;
        max-width: 100%;
        padding: 3px 9px;
        line-height: 1.15;
        white-space: nowrap;
      }

      .article-title {
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 1.38;
        -webkit-line-clamp: 2;
      }

      .article-meta {
        gap: 5px 8px;
        font-size: 10px;
        flex-wrap: wrap;
        white-space: normal;
        min-width: 0;
      }

      .meta-chip,
      .deadline {
        padding: 3px 6px;
        max-width: 100%;
      }

      .meta-chip span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .date {
        margin-left: 0;
      }

      .more-wrap {
        margin: 18px 16px 0;
      }

      #audition .more-wrap {
        display: none;
      }

      .audition-more-btn {
        width: 100%;
        min-height: 44px;
        padding: 9px 18px;
        text-align: center;
        white-space: normal;
      }

      .audition-more-text-pc {
        display: none;
      }

      .audition-more-text-sp {
        display: inline;
      }

      .latest-section {
        padding-top: 24px;
      }

      .latest-card {
        padding-bottom: 24px;
      }

      .latest-card-link {
        display: block;
      }

      .latest-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
      }

      .latest-content {
        padding-top: 12px;
      }

      .latest-title {
        font-size: 15px;
        line-height: 1.6;
      }

      .latest-excerpt {
        font-size: 13px;
        line-height: 1.7;
      }

      .latest-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-top: 16px;
      }

      .latest-more-wrap .btn {
        width: min(100%, 300px);
      }

      .faq-section {
        margin-top: 32px;
        padding: 34px 14px 18px;
      }

      .faq-title {
        margin-bottom: 34px;
        font-size: 13px;
        line-height: 1.55;
      }

      .faq-card {
        padding: 0 18px;
      }

      .faq-item {
        padding: 22px 0;
      }

      .faq-row {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
      }

      .faq-question h3 {
        font-size: 16px;
        line-height: 1.6;
      }

      .faq-answer p {
        font-size: 14px;
        line-height: 1.85;
      }

	      .mobile-panel {
	        display: block;
	      }

	      .audition-search-modal.mobile-only {
	        display: none;
	      }

	      body.audition-search-modal-open {
	        overflow: hidden;
	      }

	      .mobile-audition-search-trigger {
	        width: 100%;
	        min-height: 48px;
	        display: inline-flex;
	        align-items: center;
	        justify-content: center;
	        gap: 10px;
	        border: 0;
	        border-radius: 6px;
	        background: var(--accent);
	        color: #fff;
	        font-size: 14px;
	        font-weight: 800;
	        cursor: pointer;
	      }

	      .mobile-search-launch-panel {
	        margin: 0;
	        padding: 16px 18px 18px;
	        border: 0;
	        border-radius: 0;
	        background: #fff;
	      }

	      .audition-search-modal.is-open {
	        position: fixed;
	        inset: 0;
	        z-index: 1000;
	        display: block;
	      }

	      .audition-search-modal__backdrop {
	        position: absolute;
	        inset: 0;
	        background: rgba(26, 26, 46, .58);
	      }

	      .audition-search-modal__dialog {
	        position: absolute;
	        left: 12px;
	        right: 12px;
	        bottom: 14px;
	        max-height: calc(100dvh - 74px);
	        overflow-y: auto;
	        padding: 18px 16px 16px;
	        border-radius: 18px 18px 14px 14px;
	        background: #fff;
	        box-shadow: 0 18px 44px rgba(26, 26, 46, .25);
	      }

	      .audition-search-modal__close {
	        position: absolute;
	        top: 14px;
	        right: 14px;
	        width: 28px;
	        height: 28px;
	        display: inline-flex;
	        align-items: center;
	        justify-content: center;
	        border: 0;
	        border-radius: 50%;
	        background: #f4f4f4;
	        color: var(--sub);
	        cursor: pointer;
	      }

	      .audition-search-modal .audition-search-form,
	      .audition-search-modal .mobile-search-form {
	        display: block;
	        padding: 0;
	        background: transparent;
	      }

	      .audition-search-modal .side-card,
	      .audition-search-modal .mobile-search-panel,
	      .audition-search-modal .mobile-filter-panel {
	        margin: 0;
	        padding: 0;
	        border: 0;
	        border-radius: 0;
	        background: #fff;
	        box-shadow: none;
	      }

	      .audition-search-modal .mobile-search-panel {
	        padding-right: 34px;
	      }

	      .audition-search-modal .mobile-filter-panel {
	        margin-top: 18px;
	      }

	      .mobile-search-panel {
	        margin: 0;
	        padding: 20px 18px 24px;
        border: 0;
        border-radius: 0;
        background: #fff;
      }

      .mobile-search-panel .field-label {
        display: none;
      }

      .mobile-filter-panel {
        margin: 12px 16px 0;
        padding: 16px;
        border-radius: 10px;
        background: #fff;
      }

      .mobile-panel[aria-label="ジャンルで探す"] {
        margin: 0;
        padding: 18px;
        border: 0;
        border-radius: 0;
        background: #f4f4f4;
      }

      .side-title {
        margin-bottom: 16px;
        font-size: 18px;
      }

      .mobile-panel .side-title {
        align-items: center;
        gap: 8px;
        font-size: 15px;
      }

      .mobile-panel .side-title i,
      .mobile-panel .side-title svg {
        color: var(--accent) !important;
      }

      .filter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .filter-btn {
        min-height: 62px;
        flex-direction: column;
        gap: 3px;
        font-size: 9px;
      }

      .filter-btn i,
      .seg-btn i,
      .search-submit i,
      .filter-btn-icon {
        font-size: 25px;
        width: 25px;
        height: 25px;
        flex-basis: 25px;
        color: var(--navy);
      }

      .filter-btn svg,
      .seg-btn svg,
      .search-submit svg {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
      }

      .filter-btn-icon--image {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
      }

      .filter-btn.filter-btn--image-icon {
        flex-direction: row;
        justify-content: flex-start;
        padding: 6px 14px;
        text-align: left;
      }

      .filter-btn.active i,
      .seg-btn.active i,
      .place-tabs button.active i {
        color: #fff !important;
      }

      .segmented {
        gap: 8px;
      }

      .mobile-filter-panel .segmented {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 16px;
      }

      .seg-btn {
        min-height: 44px;
        font-size: 9px;
      }

      .mobile-place-select {
        width: 100%;
        min-height: 44px;
        margin-bottom: 16px;
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 0 14px;
        background: #fff;
        color: var(--text);
        font-size: 13px;
        font-weight: 400;
      }

      .place-tabs button {
        min-height: 42px;
        font-size: 12px;
      }

      .search-submit {
        min-height: 44px;
        font-size: 9px;
      }

      .mobile-filter-panel .search-submit {
        width: 100%;
      }

      .card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      #basic {
        margin-bottom: 0;
        background: #f4f4f4;
      }

      #basic .section-title {
        min-height: 40px;
        margin: 0 0 12px;
        padding: 10px 18px;
        border-left: 0;
        background: var(--navy);
        color: #fff;
        font-size: 16px;
      }

      #basic .section-title svg {
        color: #fff;
      }

      #basic .card-grid {
        padding: 0 16px;
      }

      #basic .feature-card {
        border-radius: 10px;
        overflow: hidden;
      }

      .feature-card .feature-thumb {
        height: 170px;
      }

      .feature-card h3 {
        font-size: 14px;
      }

      .scroll-row {
        grid-auto-columns: 160px;
        overflow-x: auto;
        margin-right: -16px;
        padding-right: 16px;
        scrollbar-width: none;
      }

      .scroll-row::-webkit-scrollbar { display: none; }

      .tips-card .feature-thumb {
        height: 110px;
      }

      .tips-card .feature-body {
        padding: 12px;
      }

      .tips-card h3 {
        margin: 3px 0 3px;
        font-size: 12px;
        line-height: 1.5;
        font-weight: 400;
      }

      .mobile-helpful-panel {
        padding: 20px 18px 18px;
        background: #f4f4f4;
      }

      .mobile-helpful-panel .section-title {
        margin-bottom: 14px;
        padding-left: 0;
        border-left: 0;
        font-size: 15px;
      }

      .mobile-helpful-panel .scroll-row {
        margin-right: -18px;
        padding-right: 18px;
      }

      #tips {
        margin-bottom: 0;
        padding: 20px 18px 32px;
        background: #f4f4f4;
      }

      #tips .section-title {
        margin-bottom: 14px;
        padding-left: 0;
        border-left: 0;
        font-size: 15px;
      }

      #tips .latest-list {
        gap: 0;
      }

      #tips .latest-card {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
      }

      #tips .latest-card-link {
        display: grid;
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 12px;
      }

      #tips .latest-thumb {
        width: 90px;
        height: 68px;
        aspect-ratio: auto;
        border-radius: 7px;
      }

      #tips .latest-content {
        padding-top: 0;
      }

      #tips .latest-title {
        font-size: 13px;
        line-height: 1.45;
      }

      #tips .latest-excerpt,
      #tips .read-more {
        display: none;
      }

      #tips .latest-footer {
        padding-top: 4px;
      }

      #tips .latest-more-wrap {
        margin: 20px 0 0;
      }

      #tips .latest-more-wrap .btn {
        width: 100%;
        max-width: none;
      }

      .sidebar {
        display: none;
      }

      .site-footer {
        padding: 32px 32px 30px;
      }

      .footer-inner {
        width: 100%;
        max-width: none;
      }

      .footer-logo {
        margin-bottom: 18px;
        font-size: 26px;
      }

      .footer-desc {
        font-size: 13px;
        line-height: 1.85;
      }

      .footer-main {
        display: block;
      }

      .footer-brand {
        margin-bottom: 34px;
      }

      .footer-social {
        margin-top: 22px;
      }

      .footer-social a {
        width: 28px;
        height: 28px;
      }

      .footer-column {
        margin-top: 34px;
      }

      .footer-column h2 {
        margin-bottom: 10px;
        padding-bottom: 12px;
        font-size: 14px;
      }

      .footer-column a {
        padding: 8px 0 8px 16px;
        font-size: 12px;
      }

      .footer-bottom {
        display: block;
      }

      .footer-line {
        margin: 34px 0 16px;
      }

      .footer-tagline {
        margin-top: 8px;
      }

      .bottom-nav {
        display: flex;
      }
    }

@media (min-width: 769px) {
  .header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

.backstage-category-page {
  background: #f4f4f8;
}

.backstage-category-page .category-main {
  background: #f4f4f8;
}

.backstage-category-page .category-layout {
  padding-top: 32px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .backstage-helpful-page .site-header {
    height: 64px;
    background: var(--navy);
  }

  .backstage-helpful-page .header-inner {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .backstage-helpful-page .logo {
    font-size: 20px;
    line-height: 1;
  }

  .backstage-helpful-page .main-nav {
    display: flex;
    align-items: center;
  }

  .backstage-helpful-page .site-header .search {
    display: flex;
    height: 36px;
  }
}

.backstage-guide-page {
  --guide-bg: #151528;
  --guide-panel: #ffffff;
  --guide-panel-soft: #f7f7f8;
  --guide-sidebar: #122344;
  --guide-sidebar-chip: #0f4a80;
  --guide-hero-start: #f04463;
  --guide-hero-mid: #dc3e5c;
  --guide-hero-end: #34243e;
  background: var(--guide-bg);
}

.backstage-guide-page .site-header {
  background: #122344;
}

.backstage-guide-page .site-header .search {
  border-radius: 4px;
  background: #064882;
}

.backstage-guide-page .site-header .search:focus-within {
  background: #0a5da6;
}

.guide-main {
  background: var(--guide-bg);
  color: #2d3038;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background:
    radial-gradient(circle at 8% 42%, rgba(255, 255, 255, .16) 0 1px, transparent 2px) 0 0 / 34px 34px,
    radial-gradient(circle at 96% 36%, rgba(255, 255, 255, .16), transparent 18%),
    linear-gradient(105deg, var(--guide-hero-start) 0%, var(--guide-hero-mid) 55%, var(--guide-hero-end) 100%);
  color: #fff;
}

.guide-hero::before,
.guide-hero::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  pointer-events: none;
}

.guide-hero::before {
  left: -70px;
  top: 54px;
  width: 210px;
  height: 210px;
}

.guide-hero::after {
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  max-width: calc(100% - 48px);
  min-height: 290px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  padding: 46px 0;
}

.guide-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.guide-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .01em;
}

.guide-hero p {
  color: #fff;
}

.guide-hero-copy > p:last-child {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}

.guide-hero-art {
  position: relative;
  min-height: 220px;
}

.guide-art-shape {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .22);
}

.guide-art-shape i {
  line-height: 1;
}

.guide-art-star {
  left: 42px;
  top: 14px;
  font-size: 50px;
  transform: rotate(12deg);
}

.guide-art-note {
  left: 112px;
  top: 82px;
  font-size: 72px;
  transform: rotate(-8deg);
}

.guide-art-mic {
  right: 42px;
  top: 24px;
  font-size: 92px;
  transform: rotate(-20deg);
}

.guide-art-film {
  left: 58px;
  bottom: 20px;
  font-size: 60px;
  transform: rotate(-12deg);
}

.guide-art-dance {
  right: 88px;
  bottom: 10px;
  font-size: 72px;
  transform: rotate(10deg);
}

.backstage-guide-page .category-layout {
  padding-top: 42px;
}

.guide-content {
  display: grid;
  gap: 28px;
}

.guide-card {
  scroll-margin-top: 96px;
  border: 1px solid rgba(20, 24, 38, .08);
  border-radius: 8px;
  background: var(--guide-panel);
  padding: 32px 34px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.guide-card h2 {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0 0 22px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: #2b2f38;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}

.guide-card h2 i {
  width: 18px;
  min-width: 18px;
  height: 1.45em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}

.guide-card p {
  margin: 0 0 10px;
  color: #444854;
  font-size: 14px;
  line-height: 1.95;
}

.guide-card p:last-child,
.guide-card ul:last-child,
.guide-card ol:last-child {
  margin-bottom: 0;
}

.guide-toc h2 {
  margin-bottom: 0px;
  border-bottom: 1px solid #e7e7ea;
  padding-top: 14px;
  padding-bottom: 14px;
}

.guide-toc ol {
  counter-reset: guide-toc;
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-toc li {
  counter-increment: guide-toc;
  border-bottom: 1px solid #ededf0;
}

.guide-toc li:last-child {
  border-bottom: 0;
}

.guide-toc a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 0px;
  min-height: 42px;
  color: #2e323d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.guide-toc a::before {
  content: counter(guide-toc);
  color: var(--accent);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.guide-toc a i {
  color: #2e323d;
  font-size: 12px;
  text-align: right;
}

.guide-toc a:hover span,
.guide-toc a:hover i {
  color: var(--accent);
}

.guide-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.guide-check-list li {
  position: relative;
  padding-left: 30px;
  color: #3d414c;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.guide-check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: .2em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
}

.guide-note,
.guide-warning {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-left: 4px solid #ffb347;
  border-radius: 4px;
  padding: 16px 18px;
  background: #fff6ea;
  color: #525866;
  font-size: 13px;
  font-weight: 700;
}

.guide-note i,
.guide-warning i {
  margin-top: .25em;
  color: #ffb347;
}

.guide-steps {
  display: grid;
  gap: 14px;
}

.guide-steps div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
  border-radius: 8px;
  padding: 20px 24px;
  background: var(--guide-panel-soft);
}

.guide-steps strong {
  grid-row: span 2;
  color: var(--accent);
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.guide-steps h3,
.guide-info-grid h3 {
  margin: 0 0 6px;
  color: #2b2f38;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.guide-steps p,
.guide-info-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.guide-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.guide-info-grid div {
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--guide-panel-soft);
}

.guide-faq {
  display: grid;
  gap: 10px;
}

.guide-faq h2 {
  margin-bottom: 10px;
}

.guide-faq details {
  overflow: hidden;
  border: 1px solid #e1e1e5;
  border-radius: 8px;
  background: #f8f8f9;
}

.guide-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 14px 18px;
  color: #333844;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  list-style: none;
}

.guide-faq summary::-webkit-details-marker {
  display: none;
}

.guide-faq summary::before {
  content: "\3f";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  flex: 0 0 18px;
}

.guide-faq summary::after {
  content: "\f078";
  margin-left: auto;
  color: #8a8f9b;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}

.guide-faq details[open] summary::after {
  content: "\f077";
}

.guide-faq details p {
  margin: 0;
  border-top: 1px solid #e1e1e5;
  padding: 16px 18px 18px 48px;
  background: #fff;
  color: #4b5160;
}

.guide-link-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.guide-link-cards a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  padding: 22px 18px;
  background: #122344;
  color: #fff;
  text-align: center;
}

.guide-link-cards a i,
.guide-link-cards a em {
  color: var(--accent);
}

.guide-link-cards strong {
  font-size: 15px;
  font-weight: 800;
}

.guide-link-cards span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
}

.guide-link-cards em {
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.guide-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: 48px 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .16), transparent 18%),
    linear-gradient(135deg, var(--guide-hero-start), #dc3e5c);
  color: #fff;
  text-align: center;
}

.guide-cta > i {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .9);
}

.guide-cta-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .9);
}

.guide-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 800;
}

.guide-cta p {
  max-width: 620px;
  margin: 0 0 26px;
  color: #fff;
  font-size: 14px;
  line-height: 1.95;
  font-weight: 700;
}

.guide-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fff;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.howto-page-head {
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.howto-page-head-inner {
  width: 1200px;
  max-width: calc(100% - 48px);
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.howto-page-head h1 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.howto-page-head h1 i {
  color: var(--accent);
  font-size: 16px;
}

.mobile-category-title {
  display: none;
}

.howto-archive-section {
  padding-bottom: 32px;
}

.single-layout {
  align-items: stretch;
}

.backstage-single-page .layout {
  padding-top: 0;
}

.single-page-frame {
  min-height: 104px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(233, 69, 96, .14), rgba(26, 26, 46, .08)),
    url("../images/page-frame.png") center / cover no-repeat;
  color: #fff;
}

.single-page-frame-inner {
  width: 1200px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

.single-page-frame h1 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
}

.single-page-frame h1 span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .72);
}

.single-content-card {
  overflow: hidden;
  border: 0px solid var(--border);
  border-radius: 0px;
  background: #fff;
}

.single-entry-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}

.single-entry-title {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
}

.single-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: var(--sub);
  font-size: 12px;
}

.single-entry-meta time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-entry-meta--breadcrumb {
  gap: 6px;
  margin: 2px 0px 7px;
  color: #9aa1b1;
  font-size: 10px;
  line-height: 1.4;
}

.single-entry-share {
  margin: 0 0 10px;
}

.single-entry-share--bottom {
  padding: 0 0px 32px;
}

.single-entry-share-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.single-entry-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  border-radius: 7px;
}

.single-entry-share-button:hover {
  color: #fff;
  opacity: .86;
}

.single-entry-share-button--facebook {
  background: #1877f2;
}

.single-entry-share-button--instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
}

.single-entry-share-button--x {
  background: #222;
}

.single-entry-share-button--pinterest {
  background: #bd081c;
}

.single-entry-share-button--line {
  background: #00b900;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.single-entry-eyecatch {
  margin: 0;
  border-bottom: 0px solid var(--border);
  padding: 0 16px;
}

.single-entry-eyecatch img {
  display: block;
  width: 100%;
  height: auto;
}

.single-entry-top-widget {
  padding: 24px 32px 0;
}

.single-entry-top-widget .widget {
  margin: 0;
}

.single-entry-top-widget .afTagBox {
  margin: 0;
}

.single-content-card .entry-content {
  padding: 32px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  counter-reset: single-section-heading;
}

.single-content-card .entry-content > :first-child {
  margin-top: 0;
}

.single-content-card .entry-content > :last-child {
  margin-bottom: 0;
}

.single-content-card .entry-content img {
  max-width: 100%;
  height: auto;
}

.single-content-card .entry-content ul {
  margin: 20px 0 28px;
  padding: 18px 36px;
  border: 2px solid #1A1A2E;
  list-style: none;
}

.single-content-card .entry-content ul li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 34px;
  border-bottom: 1px dashed #e3e3e3;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.single-content-card .entry-content ul li:last-child {
  border-bottom: 0;
}

.single-content-card .entry-content ul li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #ff4b66;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.single-content-card .entry-content ul li strong {
  font-weight: 700;
}

.single-content-card .entry-content blockquote {
  position: relative;
  margin: 24px 0;
  padding: 24px 28px 24px 64px;
  border: 0;
  border-radius: 6px;
  background: #f4f6fb;
  color: #2f7df6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.single-content-card .entry-content blockquote::before {
  content: "“";
  position: absolute;
  top: 17px;
  left: 28px;
  color: #d7dce8;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.single-content-card .entry-content blockquote p {
  margin: 0;
}

.single-content-card .entry-content blockquote a {
  color: #2f7df6;
  text-decoration: none;
}

.single-entry-toc {
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: var(--text);
}

.single-entry-toc-title {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 36px;
  border-bottom: 1px dotted #cfcfcf;
  font-size: 14px;
  font-weight: 700;
}

.single-entry-toc ol {
  margin: 0;
  padding: 0;
  counter-reset: single-entry-toc;
  list-style: none;
}

.single-entry-toc li {
  counter-increment: single-entry-toc;
  border-bottom: 1px dashed #d5d5d5;
}

.single-entry-toc li:last-child {
  border-bottom: 0;
}

.single-entry-toc a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.single-entry-toc a::before {
  content: counter(single-entry-toc);
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.single-entry-toc + h2 {
  margin-top: 24px;
}

.single-content-card .entry-content h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 20px;
  padding: 0 0 12px;
  border-bottom: 1px solid #1A1A2E;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.single-main--audition {
  padding-top: 0;
}

.single-main--audition .category-layout {
  padding-top: 0;
}

.single-audition-content {
  color: var(--text);
}

.single-audition-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  overflow: visible;
  margin: 0 0 10px;
  padding: 10px 10px;
  background: #F4F4F8;
  box-shadow: 0 0 0 100vmax #F4F4F8;
  clip-path: inset(0 -100vmax);
  color: var(--sub);
  font-size: 11px;
  line-height: 1.4;
}

.single-audition-breadcrumb a {
  color: inherit;
}

.single-audition-breadcrumb a:hover {
  color: var(--accent);
}

.single-audition-header {
  margin-bottom: 14px;
}

.single-audition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.single-audition-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  border-radius: 4px;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.single-audition-badge--tag {
  background: #DFF7EA;
  color: #1DA36B;
}

.single-audition-badge--main {
  background: #FFE3EA;
  color: #FF3B5C;
}

.single-audition-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.45;
  font-weight: 800;
}

.single-audition-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  border-top: 1px solid #ececf2;
  border-bottom: 1px solid #ececf2;
  padding: .4em 0;
  color: #777;
  font-size: 12px;
}

.single-audition-meta span,
.single-audition-meta time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.single-audition-meta .deadline {
  border-radius: 2px;
  padding: 5px 9px;
  background: var(--deadline);
  color: #232323;
  font-weight: 700;
}

.single-audition-eyecatch {
  overflow: hidden;
  margin: 0 0 26px;
  background: #000;
}

.single-audition-eyecatch img {
  display: block;
  width: 100%;
  height: auto;
}

.single-audition-search-form {
  margin: 34px 0 26px;
}

.single-audition-search-area {
  display: none;
  margin: 34px 0 26px;
}

.single-audition-search-area .audition-search-form--inline,
.single-audition-search-area .mobile-audition-search-trigger,
.single-audition-search-area .audition-search-modal {
  display: none;
}

.single-audition-search-form .backstage-audition-search-widget {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.single-audition-search-form .side-title {
  border-bottom: 1px solid #ececf2;
  padding-bottom: 10px;
}

.single-audition-search-area .backstage-audition-search-widget {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.single-audition-search-area .side-title {
  border-bottom: 1px solid #ececf2;
  padding-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .single-audition-search-area {
    display: block;
  }

  .single-audition-search-area .audition-search-form--inline {
    display: block;
  }
}

.single-audition-lead {
  margin: 20px 0 16px;
}

.single-audition-lead span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
}

.single-audition-lead p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.single-audition-detail {
  overflow: hidden;
  margin: 22px 0 26px;
  border-radius: 8px;
  border: 1px solid #e4e6ee;
  background: #fff;
}

.single-audition-detail h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 14px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.single-audition-detail-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.single-audition-detail-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.single-audition-detail-dots span:nth-child(1) {
  background: #ffd43b;
}

.single-audition-detail-dots span:nth-child(2) {
  background: #43d9c9;
}

.single-audition-detail-dots span:nth-child(3) {
  background: #ff6f91;
}

.single-audition-detail table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.single-audition-detail th,
.single-audition-detail td {
  border-bottom: 1px solid #ececf2;
  padding: 12px 16px;
  background: transparent;
  text-align: left;
  vertical-align: top;
}

.single-audition-detail tr:nth-child(odd) {
  background: #f5f7fb;
}

.single-audition-detail tr:nth-child(even) {
  background: #fff;
}

.single-audition-detail tr:last-child th,
.single-audition-detail tr:last-child td {
  border-bottom: 0;
}

.single-audition-detail th {
  width: 28%;
  color: #666;
  font-weight: 700;
}

.single-audition-body {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.single-audition-body > :first-child {
  margin-top: 0;
}

.single-audition-body img {
  max-width: 100%;
  height: auto;
}

.single-audition-body h3 {
  display: grid;
  grid-template-columns: 12px auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 34px 0 18px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.single-audition-body h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6f91;
}

.single-audition-body h3::after {
  content: "";
  height: 2px;
  background: linear-gradient(90deg, #55d7d4 0 22%, #dfe8f1 22% 100%);
}

.single-audition-body h3 span {
  min-width: 190px;
  border: 1px solid #d7e0ea;
  border-radius: 999px;
  padding: 5px 22px 6px;
  background: #fff;
  text-align: center;
  box-shadow: 0 1px 0 rgba(26, 26, 46, .04);
}

.single-audition-text-box {
  margin: 0 0 28px;
  border: 1px solid #dfe8f1;
  border-radius: 14px;
  padding: 14px 20px 18px;
  background: #fff;
}

.single-audition-text-box::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 0 14px;
  background: #ffe27a;
}

.single-audition-text-box p {
  margin: 0 0 14px;
}

.single-audition-text-box p:last-child {
  margin-bottom: 0;
}

.single-audition-point-box {
  margin: 0 0 28px;
  border: 1px solid #ffe4d5;
  border-radius: 14px;
  padding: 18px 20px 20px;
  background: #fff9f5;
}

.single-audition-point-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 5px 14px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
}

.single-audition-point-box p {
  margin: 0 0 14px;
}

.single-audition-point-box p:last-child {
  margin-bottom: 0;
}

.single-audition-info-lead {
  position: relative;
  margin: 0 0 28px;
  padding: 2px 140px 2px 0;
  color: var(--navy);
}

.single-audition-info-lead::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 72px;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 20px solid #ffb6c8;
  border-left: 11px solid transparent;
}

.single-audition-info-lead::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 4px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffe79a;
  box-shadow: 24px 58px 0 -14px #96e3e0;
}

.single-audition-info-label {
  display: block;
  margin: 0 0 8px;
  color: #3d4e82;
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
}

.single-audition-info-lead p {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 800;
}

.single-audition-body ul {
  margin: 18px 0 28px;
  border: 1px solid #dfe8f1;
  border-radius: 14px;
  padding: 22px 24px;
  background: #fff;
  list-style: none;
}

.single-audition-body li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 34px;
}

.single-audition-body li:last-child {
  margin-bottom: 0;
}

.single-audition-body li::before {
  content: "\f00c";
  position: absolute;
  top: .2em;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #e4fbf8;
  color: #2bbdb4;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.single-audition-cta {
  margin: 36px 0 0;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 14px 28px 16px;
  background: #ffe1ea;
  text-align: center;
}

.single-audition-cta p {
  margin: 0 0 10px;
  color: #555;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 400;
}

.single-audition-cta .btn {
  width: 85%;
  min-height: 38px;
  margin: 0 auto;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
}

.single-audition-cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 8px 0 0 !important;
  color: #777 !important;
  font-size: 11px !important;
  line-height: 1.6;
  font-weight: 400 !important;
}

.single-audition-cta-note i {
  color: #6f9fcf;
  font-size: 11px;
}

.single-main--audition .faq-section {
  margin-top: 44px;
}

.article-author-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.article-author-box__avatar {
  flex: 0 0 auto;
}

.article-author-box__avatar-img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.article-author-box__body {
  min-width: 0;
}

.article-author-box__label,
.article-author-box__name,
.article-author-box__desc {
  margin: 0;
}

.article-author-box__label {
  color: var(--sub);
  font-size: 12px;
  font-weight: 700;
}

.article-author-box__name {
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.article-author-box__desc {
  margin-top: 8px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.article-author-box__link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.single-related-posts {
  margin: 28px 0 0;
  padding: 0;
}

.single-related-posts__title {
  margin: 0 0 16px;
  padding: 0 0 10px;
  border-bottom: 1px solid #1A1A2E;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.single-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.single-related-posts__item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.single-related-posts__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.single-related-posts__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
}

.single-related-posts__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-related-posts__body {
  display: block;
  padding: 12px;
}

.single-related-posts__date {
  display: block;
  margin-bottom: 6px;
  color: var(--sub);
  font-size: 11px;
  line-height: 1.4;
}

.single-related-posts__name {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.single-related-posts__empty {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
}

.single-main--audition + .category-updates-section {
  border-bottom: 0;
  padding-top: 24px;
}

.howto-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.howto-filter-tags a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d9d9df;
  border-radius: 999px;
  padding: 8px 16px;
  background: #fff;
  color: #333;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(26, 26, 46, .03);
}

.howto-filter-tags a.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.howto-filter-tags i {
  width: 13px;
  min-width: 13px;
  text-align: center;
  color: currentColor;
  line-height: 1;
}

.howto-filter-tag-icon--image {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  object-fit: contain;
}

.howto-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.howto-card {
  overflow: hidden;
  border: 1px solid #d9d9df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(26, 26, 46, .02);
}

.howto-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.howto-card-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
  background: #fff;
}

.howto-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.howto-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  border-radius: 4px;
  padding: 4px 8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.howto-card-badge i {
  width: 11px;
  min-width: 11px;
  text-align: center;
  line-height: 1;
}

.howto-card-body {
  padding: 18px 16px 16px;
}

.howto-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.howto-card p {
  margin: 0 0 18px;
  color: #444;
  font-size: 13px;
  line-height: 1.8;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.howto-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #777;
  font-size: 12px;
  line-height: 1.2;
}

.howto-card-meta .howto-card-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.howto-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.howto-card-meta .read-more {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.howto-ranking-band {
  margin-top: 32px;
  background: var(--navy);
  color: #fff;
  padding: 54px 0 48px;
}

.howto-ranking-inner {
  width: 1200px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

.howto-ranking-inner h2 {
  margin: 0 0 30px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  gap: 12px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.howto-ranking-inner h2 i {
  color: var(--accent);
  font-size: 32px;
}

.howto-ranking-inner h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.howto-ranking-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.howto-ranking-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
}

.howto-ranking-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.howto-ranking-thumb {
  position: relative;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.howto-ranking-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.howto-ranking-no,
.howto-ranking-badge,
.howto-ranking-views {
  position: absolute;
  z-index: 1;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.howto-ranking-no {
  top: 0;
  left: 0;
  min-width: 30px;
  border-radius: 0 0 4px 0;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.howto-ranking-card:nth-child(2) .howto-ranking-no {
  background: #c94d32;
}

.howto-ranking-card:nth-child(3) .howto-ranking-no {
  background: #ed8a12;
}

.howto-ranking-card:nth-child(n+4) .howto-ranking-no {
  background: var(--navy);
}

.howto-ranking-badge {
  top: 8px;
  right: 8px;
  max-width: calc(100% - 46px);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.howto-ranking-views {
  right: 4px;
  bottom: 5px;
  min-height: 22px;
  border-radius: 4px 0 0 0;
  padding: 4px 7px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  gap: 4px;
}

.howto-ranking-views i {
  font-size: 10px;
  line-height: 1;
}

.howto-ranking-body {
  min-height: 112px;
  padding: 16px 12px 17px;
}

.howto-ranking-body time {
  display: block;
  margin-bottom: 9px;
  color: #777;
  font-size: 11px;
}

.howto-ranking-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .howto-ranking-inner {
    max-width: calc(100% - 40px);
  }

  .howto-ranking-list {
    gap: 12px;
  }

  .howto-ranking-thumb {
    height: 112px;
  }

  .howto-ranking-body {
    min-height: 108px;
    padding: 13px 10px 14px;
  }

  .howto-ranking-body h3 {
    font-size: 12px;
  }
}

.category-updates-section {
  background: #f4f4f8;
  border-bottom: 2px solid var(--accent);
  padding: 56px 0 52px;
}

.category-updates-inner {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.category-updates-title {
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.category-updates-title i {
  font-size: 20px;
  color: var(--navy);
}

.category-update-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid #d6d6dc;
  margin-bottom: 26px;
}

.category-update-tabs button {
  min-height: 44px;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 8px 26px;
  background: transparent;
  color: #888;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.category-update-tabs button.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.category-update-tabs i {
  width: 14px;
  min-width: 14px;
  text-align: center;
  color: currentColor;
}

.category-update-panel {
  display: none;
}

.category-update-panel.active {
  display: block;
}

.category-update-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.category-update-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9d9df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(26, 26, 46, .02);
}

.category-update-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.category-update-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 144px;
  overflow: hidden;
  background: #fff;
}

.category-update-card img {
  display: block;
  width: 100%;
  height: auto;
}

.category-update-body {
  padding: 14px 14px 16px;
}

.category-update-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  color: #777;
  font-size: 11px;
  line-height: 1.2;
}

.category-update-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.category-update-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-update-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.category-update-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.category-description {
  margin: -8px 0 24px 21px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.category-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.category-archive-card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26, 26, 46, .06);
}

.category-archive-card img {
  height: auto;
}

.category-archive-card h2 {
  margin: 6px 0 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-archive-card p {
  margin: 0 0 12px;
  color: #555;
  font-size: 13px;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-archive-card .meta {
  align-items: center;
}

.category-archive-card .category-badge i {
  width: 11px;
  min-width: 11px;
  text-align: center;
}

.archive-pagination {
  margin-top: 28px;
  -webkit-tap-highlight-color: transparent;
}

.archive-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.archive-pagination ul.page-numbers:hover,
.archive-pagination ul.page-numbers:active,
.archive-pagination ul.page-numbers:focus {
  background-color: transparent !important;
}

.archive-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-pagination .page-numbers:not(ul) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #dde1ea;
  border-radius: 6px;
  background: #fff !important;
  color: #727a8a !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.archive-pagination .page-numbers.current {
  border-color: #E94560 !important;
  background: #E94560 !important;
  color: #fff !important;
}

.archive-pagination a.page-numbers:hover {
  border-color: #E94560 !important;
  background: #fff !important;
  color: #E94560 !important;
}

.archive-pagination a.page-numbers:active,
.archive-pagination a.page-numbers:focus {
  border-color: #dde1ea !important;
  background: #fff !important;
  color: #727a8a !important;
  outline: none !important;
}

.archive-pagination .page-numbers.current:hover,
.archive-pagination .page-numbers.current:active,
.archive-pagination .page-numbers.current:focus {
  border-color: #E94560 !important;
  background: #E94560 !important;
  color: #fff !important;
}

.archive-pagination .page-numbers.prev::before,
.archive-pagination .page-numbers.next::before {
  content: none;
  display: none;
  border: 0;
}

.backstage-search-page {
  background: #fff;
}

.search-main {
  background: #fff;
}

.search-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  padding-top: 0px;
  align-items: flex-start;
}

.search-layout .main-column {
  width: auto;
  min-width: 0;
}

.search-layout .sidebar {
  width: auto;
  min-width: 0;
}

.search-results-section {
  padding-bottom: 56px;
}

.search-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #888;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.search-title {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #d6d6d6;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
}

.search-keyword {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 34px;
  color: #333;
  font-size: 12px;
  line-height: 1.2;
}

.search-result-list {
  display: grid;
  gap: 18px;
}

.search-result-item {
  padding-bottom: 18px;
  border-bottom: 1px dotted #d6d6d6;
}

.search-result-link {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  color: inherit;
}

.search-result-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}

.search-result-thumb img {
  width: 100%;
  height: auto;
}

.search-result-body {
  display: block;
  min-width: 0;
  padding-top: 2px;
}

.search-result-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  color: #666;
  font-size: 11px;
  line-height: 1.2;
}

.search-result-title {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.search-result-excerpt {
  display: block;
  color: #444;
  font-size: 13px;
  line-height: 1.9;
}

.search-result-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  color: #888;
  font-size: 11px;
  line-height: 1.2;
}

.search-result-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.search-result-dates .search-result-date {
  margin-top: 9px;
}

.search-result-link:hover .search-result-title {
  color: var(--accent);
}

.backstage-howto-page [class*="help"][style*="fixed"],
.backstage-howto-page [id*="help"][style*="fixed"],
.backstage-howto-page [class*="chat"][style*="fixed"],
.backstage-howto-page [id*="chat"][style*="fixed"],
.backstage-howto-page > div[style*="position: fixed"][style*="bottom"][style*="right"],
.backstage-howto-page > button[style*="position: fixed"][style*="bottom"][style*="right"],
.backstage-howto-page [aria-label="?"],
.backstage-howto-page [title="?"] {
  display: none !important;
}

.logo,
.hero h1,
.btn,
.mock-card h3,
.deadline,
.section-title,
.article-title,
.feature-card h3,
.side-banner h3,
.side-title,
.filter-btn,
.seg-btn,
.place-tabs button,
.rank-no,
.rank-item h4,
.tag-cloud .tag,
.footer-logo,
.bottom-nav a,
.bottom-nav button {
  font-weight: 700;
}

.drawer-nav,
.category-tabs a,
.mobile-chip,
.field-label,
.side-banner p,
.footer-column a {
  font-weight: 400;
}

.search,
.hero p,
.article-meta,
.footer-desc,
.footer-tagline,
.copyright {
  font-weight: 400;
}

.backstage-home-page .page-header,
.backstage-home-page .sidebar .widget,
.backstage-home-page .site-main > *,
.backstage-category-page .page-header,
.backstage-category-page .sidebar .widget,
.backstage-category-page .site-main > * {
  margin-bottom: 0;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .category-tabs { top: 98px; }
  body.admin-bar .howto-filter-tags { top: 152px; }
}

@media (max-width: 767px) {
  .category-tabs {
    display: none;
  }

  .howto-filter-tags {
    top: 52px;
  }

  body.admin-bar .howto-filter-tags {
    top: 98px;
  }

  .guide-hero {
    min-height: 240px;
  }

  .guide-hero-inner {
    width: 100%;
    max-width: none;
    min-height: 240px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 34px 20px 38px;
  }

  .guide-hero-art {
    display: none;
  }

  .guide-pill {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .guide-hero h1 {
    font-size: 27px;
    line-height: 1.35;
  }

  .guide-hero-copy > p:last-child {
    margin-top: 14px;
    font-size: 14px;
  }

  .backstage-guide-page .category-layout {
    padding: 24px 16px 48px;
  }

  .guide-content {
    gap: 18px;
  }

  .guide-card {
    scroll-margin-top: 132px;
    border-radius: 8px;
    padding: 24px 20px;
  }

  .guide-card h2 {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    padding-left: 12px;
    font-size: 18px;
  }

  .guide-card p,
  .guide-check-list li {
    font-size: 13px;
  }

  .guide-toc a {
    grid-template-columns: 24px minmax(0, 1fr) 14px;
    min-height: 46px;
    font-size: 12px;
  }

  .guide-steps {
    gap: 10px;
  }

  .guide-steps div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .guide-steps strong {
    grid-row: auto;
    font-size: 28px;
  }

  .guide-info-grid,
  .guide-link-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-info-grid div {
    padding: 18px;
  }

  .guide-faq summary {
    align-items: flex-start;
    padding: 14px;
    font-size: 13px;
  }

  .guide-faq details p {
    padding: 14px 14px 16px;
  }

  .guide-cta {
    padding: 34px 22px;
  }

  .guide-cta h2 {
    font-size: 19px;
  }

  .guide-cta p {
    font-size: 13px;
  }

  .howto-page-head {
    display: none;
  }

  .howto-archive-section {
    padding: 12px 16px 28px;
  }

  .howto-filter-tags {
    position: static;
    top: auto;
    z-index: auto;
    gap: 8px;
    margin: -12px -16px 14px;
    padding: 12px 16px 8px;
    background: var(--page);
    overflow: visible;
    flex-wrap: wrap;
  }

  .howto-filter-tags::-webkit-scrollbar {
    display: initial;
  }

  .howto-filter-tags a {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .mobile-category-title {
    display: none;
  }

  .backstage-helpful-page .mobile-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 14px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
  }

  .backstage-helpful-page .mobile-category-title::before {
    content: "";
    width: 3px;
    height: 22px;
    border-radius: 999px;
    background: var(--accent);
  }

  .backstage-helpful-page .mobile-category-title i {
    color: var(--accent);
    font-size: 15px;
  }

  .backstage-helpful-page .howto-filter-tags {
    position: static;
    z-index: auto;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .backstage-helpful-page .howto-filter-tags a {
    min-height: 26px;
    border: 0;
    border-radius: 4px;
    padding: 6px 11px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    line-height: 1.2;
    box-shadow: none;
  }

  .backstage-helpful-page .howto-filter-tags a.active {
    background: var(--accent);
    color: #fff;
  }

  .backstage-helpful-page .howto-filter-tags i {
    width: 11px;
    min-width: 11px;
    font-size: 10px;
  }

  .single-content-card {
    overflow: hidden;
    border: 0px solid var(--border);
    border-radius: 0px;
    background: #fff;
  }

  .single-entry-header {
    padding: 22px 18px 16px;
  }

  .single-entry-meta--breadcrumb {
    margin: 2px 10px 7px;
    font-size: 10px;
  }

  .single-page-frame {
    min-height: 78px;
  }

  .single-page-frame-inner {
    max-width: calc(100% - 32px);
  }

  .single-page-frame h1 {
    padding-left: 2em;
    font-size: 16px;
  }

  .single-page-frame h1 span {
    padding-bottom: 7px;
  }

  .single-entry-title {
    font-size: 22px;
    line-height: 1.45;
  }

  .single-content-card .entry-content {
    padding: 24px 18px;
    font-size: 14px;
  }

  .single-content-card .entry-content ul {
    margin: 20px 0 28px;
    padding: 0px 5px;
  }

  .single-related-posts {
    margin-top: 24px;
  }

  .single-related-posts__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .single-related-posts__title {
    font-size: 17px;
  }

  .single-main--audition {
    padding-top: 0;
  }

  .single-main--audition .category-layout {
    display: block;
    max-width: none;
    padding: 0px;
  }

  .single-audition-breadcrumb {
    margin: 0 0 10px;
    width: auto;
    padding: 10px 10px;
    font-size: 10px;
  }

  .single-audition-badge {
    min-height: 20px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .single-audition-title {
    font-size: 17px;
    line-height: 1.5;
  }

  .single-audition-meta {
    gap: 6px 10px;
    font-size: 10px;
  }

  .single-audition-eyecatch {
    margin-bottom: 20px;
  }

  .single-audition-search-form {
    margin-bottom: 24px;
  }

  .single-audition-search-area {
    display: block;
    margin: 28px 0 24px;
  }

  .single-audition-search-area .audition-search-form--inline {
    display: none;
  }

  .single-audition-search-area .mobile-audition-search-trigger {
    display: inline-flex;
  }

  .single-audition-search-area .audition-search-modal.is-open {
    display: block;
  }

  .single-audition-search-form .side-title {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .single-audition-search-area .side-title {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .single-audition-search-form .filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .single-audition-search-form .filter-btn {
    min-height: 34px;
    padding: 6px 8px;
  }

  .single-audition-search-form .filter-btn-label {
    font-size: 9px;
  }

  .single-audition-lead p {
    font-size: 12px;
  }

  .single-audition-detail {
    margin: 18px 0 22px;
    border-radius: 6px;
  }

  .single-audition-detail h2 {
    padding: 8px 12px;
    font-size: 12px;
  }

  .single-audition-detail table {
    font-size: 11px;
  }

  .single-audition-detail th,
  .single-audition-detail td {
    padding: 10px 12px;
  }

  .single-audition-detail th {
    width: 30%;
  }

  .single-audition-body {
    font-size: 13px;
  }

  .single-audition-body h3 {
    grid-template-columns: 10px auto 1fr;
    gap: 10px;
    margin: 28px 0 14px;
    font-size: 14px;
  }

  .single-audition-body h3::before {
    width: 10px;
    height: 10px;
  }

  .single-audition-body h3 span {
    min-width: 130px;
    padding: 4px 16px 5px;
  }

  .single-audition-text-box {
    margin-bottom: 24px;
    border-radius: 12px;
    padding: 12px 14px 16px;
  }

  .single-audition-text-box::before {
    margin-bottom: 12px;
  }

  .single-audition-point-box {
    margin-bottom: 24px;
    border-radius: 12px;
    padding: 16px 14px 18px;
  }

  .single-audition-point-label {
    min-width: 78px;
    margin-bottom: 12px;
    padding: 5px 12px;
    font-size: 9px;
  }

  .single-audition-info-lead {
    margin-bottom: 24px;
    padding: 0 78px 0 0;
  }

  .single-audition-info-lead::before {
    top: 8px;
    right: 42px;
    border-right-width: 8px;
    border-bottom-width: 15px;
    border-left-width: 8px;
  }

  .single-audition-info-lead::after {
    top: -6px;
    right: 2px;
    width: 38px;
    height: 38px;
    box-shadow: 16px 40px 0 -10px #96e3e0;
  }

  .single-audition-info-label {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .single-audition-info-lead p {
    font-size: 12px;
    line-height: 1.75;
  }

  .single-audition-body ul {
    margin: 14px 0 24px;
    border-radius: 12px;
    padding: 18px 16px;
  }

  .single-audition-body li {
    padding-left: 30px;
  }

  .single-audition-body li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .single-audition-cta {
    margin-top: 28px;
    padding: 14px 12px 16px;
  }

  .single-audition-cta p {
    font-size: 11px;
  }

  .single-audition-cta .btn {
    font-size: 13px;
  }

  .single-main--audition .faq-section {
    margin-top: 32px;
  }

  .howto-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .howto-card-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .howto-card-body {
    padding: 13px 14px 14px;
  }

  .howto-card h2 {
    font-size: 14px;
  }

  .howto-card p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .howto-card-meta {
    font-size: 11px;
  }

  .howto-ranking-band {
    display: none;
  }

  .category-updates-section {
    padding: 30px 16px 34px;
  }

  .category-updates-inner {
    width: 100%;
    max-width: none;
  }

  .category-updates-title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .category-update-tabs {
    overflow-x: auto;
    margin-bottom: 18px;
    scrollbar-width: none;
  }

  .category-update-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-update-tabs button {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12px;
  }

  .category-update-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-update-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .category-update-more {
    justify-content: flex-start;
  }

  .backstage-category-page .category-layout {
    padding-top: 0;
  }

  .backstage-category-page .category-archive-section {
    background: #f4f4f8;
    padding-bottom: 28px;
  }

  .backstage-category-page .section-title {
    min-height: 40px;
    margin: 0;
    padding: 11px 16px;
    border-left: 0;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
  }

  .backstage-category-page .section-title i {
    color: #fff;
  }

  .category-description {
    margin: 14px 16px 0;
    font-size: 13px;
  }

  .category-archive-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px 0;
  }

  .category-archive-card {
    border-radius: 12px;
  }

  .category-archive-card h2 {
    font-size: 14px;
  }

  .archive-pagination {
    margin: 22px 16px 0;
  }

  .search-layout {
    padding-top: 24px;
  }

  .search-results-section {
    padding: 0 16px 34px;
  }

  .search-title {
    font-size: 21px;
  }

  .search-keyword {
    margin-bottom: 22px;
  }

  .search-result-list {
    gap: 14px;
  }

  .search-result-item {
    padding-bottom: 14px;
  }

  .search-result-link {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
  }

  .search-result-thumb {
    width: 112px;
  }

  .search-result-category {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .search-result-title {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .search-result-excerpt {
    font-size: 11px;
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .search-result-dates {
    display: none;
  }

  .single-entry-share {
    margin: 0 10PX 10px;
  }
}
