/*/nna-au.com/public_html/nexus.nna-au.com/wp-content/themes/j-business-nexus/*/

/* =========================================
   Base
========================================= */

:root {
    --color-orange: #ffb600;
    --color-navy: #303a71;
    --color-black: #333333;
    --color-gray-bg: #f4f4f4;
    --color-dark-bg: #222222;
    --color-red: #d12317;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.white {
    color: #fff !important;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family:
        "Noto Sans JP",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--color-black);
    background-color: #ffffff;
    line-height: 1.6;
}

/* 共通コンテナ 1200px */
.site-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 16px;
}

/* 見出しフォント*/
h1,
h2,
h3,
h4,
.hero-title,
.section-title {
    font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* リンク */
a {
    color: var(--color-navy);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn-close:focus {
    box-shadow: none;
}

/* btn-main はリンクでも下線を出さない */
a.btn-common,
a.btn-common:hover,
a.btn-common:focus,
a.btn-common:active {
  text-decoration: none !important;
}

/* ボタンスタイル */
.btn-common {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-main {
    background: #ffb600;
    border-color: #ffb600;
    color: #fff;
    padding: 8px 40px;
    font-size: 18px;
}

.btn-main:hover {
    background: #e5a400;
    /* 少し濃くする */
    border-color: #e5a400;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 182, 0, 0.35);
}

.btn-sub {
    background: #fff;
    color: #333;
    font-size: 1rem;
    border: 1px solid #ddd;
    font-weight: normal;
    padding: 8px 20px;
}

.btn-sub:hover {
    background: #f3f3f3;
    transform: translateY(-1px);
}

.btn-common i {
    margin-left: 6px;
    font-size: 0.9em;
}

/* =========================================
   Header
========================================= */

.site-header {
    position: relative;
    z-index: 20;
    background-color: #2b2b2b;
    color: #ffffff;
    padding-block: 10px;
}

.brand-logo {
    display: inline-block;
}

.brand-logo img {
    width: 300px;
    height: auto;
    display: block;
}

.lang-switch {
    font-size: 0.9rem;
}

.lang-item {
    color: #ffffff;
    padding-inline: 4px;
    transition: color 0.2s ease;
    text-decoration: none;
}

/* hover と active を同じ色に */
.lang-item:hover,
.lang-item.is-active {
    color: var(--color-orange);
    text-decoration: none;
}

/* active は少し強調 */
.lang-item.is-active {
    font-weight: 600;
    cursor: default;
}

.lang-divider {
    color: #ffffff;
    margin-inline: 2px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.powered-by {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    color: #ffffff;
    opacity: 0.85;
    white-space: nowrap;
    margin-top: 18px;
}

@media (max-width: 575px) {
    .site-header .site-container {
        padding: 12px 16px;
    }

    .brand-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .brand-logo img {
        width: 150px;
    }

    .powered-by {
        font-size: 10px;
        margin-top: -2px;
        opacity: 0.9;
    }

    .header-right {
        margin-left: auto;
        margin-top: 4px;
    }

    .lang-item {
        font-size: 13px;
        padding: 0 4px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .brand-logo img {
        width: 170px;
    }

    .powered-by {
        font-size: 11px;
    }

    .hero-lead {
        font-size: 1.2rem !important;
    }
}

/* =========================================
   Hero
========================================= */

.hero {
    position: relative;
    padding-top: 48px;
    padding-bottom: 120px;
    color: #ffffff;
    overflow: hidden;
}

.sp-br {
    display: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(4, 103, 224, 0.7) 100%);
    z-index: -1;
}

.hero-inner {
    position: relative;
}

.hero-text {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-lead {
    font-size: clamp(calc(1.9rem * 0.567), calc(3vw * 0.567), calc(3rem * 0.567));
    line-height: 1.9;
    font-weight: 700;
}

/* 任意：991px以下でさらに微調整したい場合 */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 408px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-lead {
        font-size: 0.9rem !important;
    }
}

/* ステップ帯 */
.hero-steps-wrapper {
    position: relative;
    max-width: 800px;
    margin: -40px auto 0 auto;
}

/* PC/タブレット */
.hero-steps {
    background: linear-gradient(0deg,
        rgba(4, 103, 224, 0.5) 0%,
        rgba(4, 103, 224, 0.9) 100%);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 22px 28px;
    color: #fff;
    transform: translateY(28px);
}

.hero-steps-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-br {
    display: none;
}

.hero-steps-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

/* STEP丸 */
.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.step-label {
    font-size: 0.55rem;
    margin-bottom: -10px;
    margin-top: 5px;
}

.step-number {
    font-size: 1.7rem;
    font-weight: 700;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* 横矢印（PC/タブレット） */
.step-arrow {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    align-self: center;
}

.arrow-horizontal {
    display: inline-flex;
}

/* ------------------------------------
      タブレット（～991px）
------------------------------------ */
@media (max-width: 991px) {
    .step-circle {
        width: 52px;
        height: 52px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .hero-steps-items {
        gap: 20px;
    }

    .step-arrow {
        font-size: 1rem;
    }
}

/* ------------------------------------
      スマホ（〜575px）
------------------------------------ */
@media (max-width: 575px) {
    .hero-steps {
        padding: 22px 16px;
    }

    .sp-br {
        display: inline;
    }

    .step-br {
        display: inline;
    }

    .hero-steps-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: flex-start;
    }

    /* STEP 1,2,3 のコンテナ（青の半透明背景はここ） */
    .step-item {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;

        background: rgba(255, 255, 255, 0.3);
        /* ← ブルー半透明 */
        border-radius: 12px;

        padding: 8px 14px 8px 8px;
        /* ← 左側に丸の分だけ距離を確保 */
        min-height: 54px;
        /* 丸がハミ出ない高さ確保 */

        text-align: center;
        justify-content: center;
        /* ← 水平中央 */
    }

    /* 左のオレンジ丸は浮かせて配置 */
    .step-circle {
        position: absolute;
        left: 8px;
        /* ← ブルー背景に食い込ませる */
        top: 50%;
        transform: translateY(-50%);

        width: 48px;
        height: 48px;
        background: var(--color-orange);
        color: #fff;
        border-radius: 50%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        z-index: 3;
    }

    .step-label {
        font-size: 0.56rem;
        line-height: 1;
        margin-bottom: -16px;
    }

    .step-number {
        font-size: 1.35rem;
        font-weight: 700;
        margin-top: 0.6rem;
    }

    .step-title {
        font-weight: 600;
        color: #fff;
        width: 100%;
    }

    .arrow-horizontal {
        display: none !important;
    }

    .hero-steps-items .step-item:not(:last-child)::after {
        content: "\f063";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.85);
        position: absolute;
        left: 50%;
        bottom: -26px;
        transform: translateX(-50%);
        z-index: 2;
    }
}

/* 英語表示のときだけ STEPタイトルを折り返し可にする */
html[lang^="en"] .hero-steps .step-title {
    white-space: normal;
    line-height: 1.25;
    text-align: center;
}

/* 英語表示時：STEPの丸が楕円にならないよう固定 */
html[lang^="en"] .hero-steps .step-circle {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
}
@media (max-width: 991px) {
  html[lang^="en"] .hero-steps .step-circle {
      width: 52px;
      height: 52px;
  }
  html[lang^="en"] .hero-illust {
    display: none;
  }
}


/* Hero Card */

.hero-card {
    position: relative;
    margin-top: 56px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 40px 32px 28px;
    color: var(--color-black);
    overflow: visible !important;
}

.hero-card-inner {
    position: relative;
    z-index: 2;
}

/* 業種フォーム */

.hero-form {
    margin-top: 12px;
}

.hero-form-title {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    text-align: center;
    color: var(--color-navy);
}

.hero .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid #999;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

/* チェック時のオレンジ背景 */
.hero .form-check-input:checked {
    background-color: #ffb600 !important;
    border-color: #ffb600 !important;
}

/* ラベル */
.hero .form-check-label {
    font-size: 15px;
    font-family: "Noto Sans JP", sans-serif;
    cursor: pointer;
    margin-left: 6px;
}

/* 各チェックボックスの縦余白 */
.hero .form-check {
    margin-bottom: 10px;
}

.hero-form-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-bottom-line {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 14px;
    border-top: 1px solid #ddd;
}

.hero-center-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.hero-left-area {
    display: flex;
    align-items: center;
}

/* 選択解除ボタン */
.hero-clear-btn {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
}

/* 次へ ボタン */
.btn-next-step {
    background: #ffb600;
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 575px) {

    /* 全体の横並び調整 */
    .hero-center-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    /* 全選択（チェックボックス＋テキスト） */
    .select-all-wrap {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .select-all-wrap input {
        transform: scale(0.9);
    }

    /* 選択解除ボタン：控えめに */
    .btn-sub {
        font-size: 0.8rem;
        padding: 6px 10px;
        border-radius: 6px;
        white-space: nowrap;
    }

    /* 次へボタン（CTA） */
    .btn-main {
        font-size: 0.95rem;
        padding: 8px 14px;
        border-radius: 8px;
        white-space: nowrap;
    }

    /* ボタン全体の高さを抑える */
    .hero-form-footer .hero-bottom-line {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* =========================================
   Section 共通
========================================= */

.section {
    padding-block: 64px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}


/* =========================================
   Page 共通
========================================= */

.page-style h2 {
    color: #fff;
    background: var(--color-navy);
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.page-style ol {
    padding: 0;
}

.page-style ol>li {
    list-style: none;
}

.page-style ol>li>ul {
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

.page-style ol>li>ul>li {
    position: relative;
    padding-left: 1.5em;
}

.page-style ol>li>ul>li::before {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
}

/* =========================================
   Footer
========================================= */

.site-footer {
    background-color: #333333;
    color: #f5f5f5;
}

.footer-top {
    padding-block: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-row {
    gap: 20px;
}

.footer-main-logo img {
    width: 220px;
    height: auto;
    display: block;
}

.footer-main-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-powered-by {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    color: #ffffff;
    opacity: 0.85;
    margin-top: 10px;
    white-space: nowrap;
}

.footer-partner-logos {
    gap: 12px;
}

.partner-logo {
    width: 200px;
    height: auto;
    margin: 10px 15px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-middle {
    padding-block: 16px;
}

.footer-link {
    font-size: 0.85rem;
    color: #f5f5f5;
}

.footer-link:hover {
    color: var(--color-orange);
    text-decoration: none;
}

.footer-divider {
    color: #aaaaaa;
}

.footer-bottom {
    padding-block: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-size: 0.75rem;
    color: #cccccc;
}

@media (max-width: 575px) {
    .footer-main-logo-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 12px;
    }

    .footer-powered-by {
        font-size: 10px;
        opacity: 0.9;
    }
}

/* =========================================
   Back to Top
========================================= */

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-orange);
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    z-index: 40;
}

.back-to-top i {
    font-size: 1rem;
    color: #fff;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .back-to-top {
        position: fixed;
        bottom: 90px;
    }
}

/* =========================================
   Cookie Banner
========================================= */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(25, 25, 25, 0.96);
    color: #ffffff;
    padding: 14px 16px;
    z-index: 50;
}

.cookie-inner {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-text {
    font-size: 0.8rem;
    margin: 0;
}

.cookie-link {
    color: var(--color-orange);
}

.cookie-actions {
    display: flex;
    justify-content: center;
}

/* =========================================
   Fade-in Animation
========================================= */

.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive
========================================= */
.footer-middle .site-container {
    gap: 1rem !important;
}

@media (max-width: 1199.98px) {
    .hero-card {
        padding-inline: 24px;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-steps-wrapper {
        max-width: 100%;
    }

    .hero-card {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        padding-block: 8px;
    }

    .hero {
        padding-top: 32px;
        padding-bottom: 88px;
    }

    .hero-steps-wrapper {
        max-width: 100%;
    }

    .hero-steps {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 14px;
    }

    .hero-steps-items {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hero-card {
        padding: 24px 18px 22px;
        border-radius: 16px;
    }

    .hero-form-title {
        font-size: 1.2rem;
    }

    .industry-group .form-check-label {
        font-size: 0.95rem;
    }

    .hero-form-footer-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .hero-selectall-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .section {
        padding-block: 48px;
    }

    .section-services {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .section-news {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .section-banners {
        padding-bottom: 56px;
    }

    .footer-top,
    .footer-middle,
    .footer-bottom {
        text-align: center;
    }

    .footer-middle .site-container {
        gap: 0 !important;
    }

    .footer-logo-row {
        gap: 12px;
    }

    .cookie-inner {
        font-size: 0.8rem;
    }
}

/* ===============================
   確認画面 専用
=============================== */

.confirm-category {
    margin-bottom: 36px;
}

.confirm-category-title {
    background: #303a71;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.confirm-company-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.confirm-company-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
}

.confirm-company-list li::before {
    content: "\f0f2";
    /* fa-building */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.85rem;
    color: var(--color-navy);
}

.confirm-inquiry-box {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 14px 16px;
}

.confirm-inquiry-label {
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
    padding-left: 6px;
    border-left: 4px solid var(--color-orange);
}

.confirm-inquiry-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.confirm-value {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 10px 12px;
    border-radius: 6px;
}

/* 確認画面：基本情報 見出し下の余白調整 */
.form-title+.form-row {
    margin-top: 40px;
    /* 既存より少し広め */
}

.fa-paper-plane:before,
.fa-arrow-left:before {
    margin-right: 0.3rem;
}

/* ===============================
   確認画面：同意エリア
=============================== */

.confirm-agree-wrap {
    display: flex;
    justify-content: center;
    margin: 32px 0 40px;
    /* 上下余白も調整 */
}

.confirm-agree-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 1rem;
    font-weight: 700;
    color: #333;

    padding-left: 10px;
    border-left: 4px solid var(--color-orange);
}

.confirm-agree-check {
    appearance: none;
    -webkit-appearance: none;

    width: 20px;
    height: 20px;

    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;

    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

/* チェック時 */
.confirm-agree-check:checked {
    background: #ffb600;
    border-color: #ffb600;
}

/* チェックマーク */
.confirm-agree-check:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

/* ホバー時 */
.confirm-agree-check:hover {
    box-shadow: 0 0 0 3px rgba(255, 182, 0, 0.25);
}

/* フォーカス時 */
.confirm-agree-check:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 182, 0, 0.25);
}

/* ===============================
   送信完了画面
=============================== */
.complete-text {
    text-align: center;
    line-height: 1.8;
}

.complete-sign {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
    padding-top: 1rem;
    margin-bottom: 0;
}

/* ===============================
   GDPR
=========================== */

#cookie-consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9998;
    display: none;
}

#cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    background: #2f2f2f;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 9999;
    display: none;
    font-size: 14px;
}

#cookie-consent h3 {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

#cookie-consent a {
    color: #f5a623;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

#cookie-preferences {
    display: none;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
}

.pref-title {
    font-weight: bold;
    margin-bottom: 8px;
}

label {
    display: block;
    margin-bottom: 6px;
}

.btn {
    padding: 8px 10px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    border-radius: 4px;
}

.btn.primary {
    background: var(--color-orange);
    color: #fff;
}

.btn.secondary {
    background: #4a90e2;
    color: #fff;
}

.btn.tertiary {
    background: #777;
    color: #fff;
}

.dns-link {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}

/* ===============================
   Terms Meta
=========================== */

.terms-meta {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.terms-meta th,
.terms-meta td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    vertical-align: top;
}

.terms-meta th {
    width: 180px;
    background-color: #f7f7f7;
    font-weight: 600;
    text-align: left;
}