@charset "utf-8";
/* CSS Document */




.passkey-box {
  background: linear-gradient(145deg, #1f4fd8 0%, #3766e0 50%, #2a3ebf 100%); /* 3色グラデで深み */
  color: #ffffff;
  padding: 18px 20px;
  font-size: large;
  border-radius: 12px; /* 丸めて今風 */
  
  /* 浮き感＆立体感 */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2), inset 0 -3px 6px rgba(255, 255, 255, 0.1);
}

.passkey-box .label {
  background: linear-gradient(145deg, #ffffff 0%, #e6e6e6 100%); /* ラベル軽くグラデ */
  color: #1f4fd8;
  padding: 6px 10px;
  margin-right: 10px;
  border-radius: 999px; /* ピル型 */
  font-weight: bold;
  font-size: 95%;
  display: inline-block;
  
  /* ラベル浮き感 */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* ---------- 共通設定 ---------- */
.h2-title, .h3-title, .h4-title {
    color: #1b365f; /* 濃紺で統一 */
}

/* ---------- H2: メインタイトル ---------- */
.h2-title {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-left: 14px;
    margin: 32px 0 16px 0;
}

/* 左側の青ラインで階層を明確に */
.h2-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #4a90e2; /* 青系単色 */
    border-radius: 2px;
}

/* 薄い青系グラデで浮き上がり感 */
.h2-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    background: rgba(74, 144, 226, 0.08);
    z-index: -1;
    border-radius: 4px;
}

/* ---------- H3: サブタイトル ---------- */
.h3-title {
    font-size: 18px;
    font-weight: 600;
    color: #1b365f;
    display: inline;
    line-height: 1.6;
    background: linear-gradient(
        transparent 72%,
        rgba(74, 144, 226, 0.28) 72%
    );
}



/* ---------- H4: 小見出し ---------- */
.h4-title02 {
    font-size: 18px;
    font-weight: 500;
    margin: 14px 0 6px 0;
    position: relative;
    color: #1b365f;
}

/* H4用アイコン付け（任意） */
.h4-title02.camera::before {
    content: "📷 ";
    margin-right: 4px;
		font-size: 33px;
}

.h4-title.highlight::before {
    content: "⚠️ ";
    margin-right: 4px;
}

.h4-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    position: relative;
    padding-left: 20px;
    padding-bottom: 2px;
}


.camera::before {
  content: "📷 "; /* カメラマークを追加 */
  margin-right: 6px; /* 少し余白 */
}
@media (min-width: 768px) {
    .title-marker {
        font-size: 2rem;
    } }




.flow {
  display: flex;
  align-items: center;
  justify-content: center; /* 中央揃え */
  gap: 40px; /* 矢印含めて広すぎず狭すぎず */
  background: #f5f7fa;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* 横スクロールが必要な場合は nowrap、狭い画面は wrap に変更可能 */
}

.step {
  text-align: center;
  flex: 1 1 250px; /* 横幅に応じて伸縮 */
  max-width: 280px; /* ステップの最大幅 */
}

.step h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
}

.step img {
  width: 100%; /* ステップ幅に合わせて可変 */
  max-width: 180px; /* 横幅1200pxでも大きく表示 */
  margin: 8px 0;
}

.note {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

.example {
  font-size: 16px;
  color: #777;
  margin-top: 6px;
}

.symbol {
  font-size: 32px;
  font-weight: bold;
  color: #1f4fd8; /* 金融系ブルー */
  margin-bottom: 6px;
}

.arrow {
  font-size: 36px;
  color: #1f4fd8;
  flex-shrink: 0; /* 縮まらない */
  align-self: center;
}

@media (max-width: 768px) {
  .flow {
    flex-direction: column;   /* 縦並び  */
    gap: 20px;                /* 間隔を少し狭く */
    flex-wrap: wrap;          /* 折り返し可 */
  }

  .arrow {
    transform: rotate(90deg); /* → を ↓ に見せる */
  }

  .step {
    max-width: 100%;          /* 横幅いっぱい */
  }

  .step img {
    max-width: 220px;         /* スマホでは少し大きめに */
  }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(145deg, #ff9f43, #ff7f11); /* オレンジグラデで元気な印象 */
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;      /* 丸みで親しみやすく */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* 浮き感 */
    transition: transform 0.15s, box-shadow 0.15s;
}

/* ホバー時 */
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
		color: #ffffff;
		text-decoration: none;
}
.cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
/* ===============================
   レイアウトラッパー
================================ */
.table-scroll {
    max-width: 1000px;      /* 1200pxでも間延びしない幅 */
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   テーブル本体
================================ */
.device-table {
    width: 100%;
    min-width: 720px;       /* スマホで崩れない最小幅 */
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ヘッダー */
.device-table thead {
    background: linear-gradient(145deg, #fff8d6, #fff280);
}

.device-table th {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1b365f;
    text-align: left;
}

/* ボディ */
.device-table td {
    padding: 18px;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #f1f1f1;
    vertical-align: top;
    line-height: 1.6;
}

/* デバイス列を少し強調 */
.device-table td:first-child {
    font-weight: 600;
    color: #1f4fd8; /* 金融系ブルー */
    white-space: nowrap;
}

/* 行の交互色 */
.device-table tbody tr:nth-child(odd) {
    background: #fffdf6;
}

/* ホバー（PCのみ） */
@media (hover: hover) {
    .device-table tbody tr:hover {
        background: #fff4cc;
        transition: background 0.2s ease;
    }
}

/* ===============================
   スマホ対応（レイアウト維持）
================================ */
@media screen and (max-width: 768px) {

    .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* スクロールヒント（必要なら表示） */
    .table-scroll::after {
        content: "← 横にスクロールできます →";
        display: block;
        text-align: right;
        font-size: 12px;
        color: #999;
        margin-top: 6px;
    }
}

/* ===============================
   PCのみ文字サイズアップ
================================ */
@media screen and (min-width: 1024px) {

    .device-table th {
        font-size: 15px;   /* 14 → 16 */
        padding: 18px 20px;
    }

    .device-table td {
        font-size: 15px;   /* 14 → 16 */
        padding: 20px;
        line-height: 1.8;  /* 行間ゆったり */
    }

    .device-table td:first-child {
        font-size: 17px;   /* デバイス列だけ少し強調 */
    }
}



.tab-wrapper {
  margin-top: 20px;
}
.tab-buttons {
  display: flex;
  gap: 12px;
  padding: 6px;
  border-radius: 8px;
  background: #f4f7fb;
  position: relative;
  --slide-color: linear-gradient(135deg,#a3c9ff,#b0e0ff);
  --slide-left: 0%;
}

.tab-buttons::before {
  content: "";
  position: absolute;
  top: 6px;
  left: var(--slide-left, 0%);
  width: calc(33.333% - 4px);
  height: calc(100% - 12px);
  border-radius: 8px;
  z-index: 1;
  transition: all 0.35s ease;
  background: var(--slide-color);
}

.tab-button {
  flex: 1;
  padding: 12px 0;
  border-radius: 6px;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #2b2d42;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-button.active {
  color: #1b1f3b;
  border: 2px solid var(--slide-color);
}

.tab-content {
  display: none;
  margin-top: 20px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
  border: 2px solid var(--content-border, #e0e6f0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   共通リスト設定
========================= */
.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.2em 0;
  counter-reset: item;
}

/* =========================
   レベル1
========================= */
.custom-list.level-1 > li {
  counter-increment: item;
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}

/* レベル1番号 */
.custom-list.level-1 > li::before {
  content: counters(item, ".") ". ";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #1b365f;
}

/* =========================
   レベル2（ネスト）
========================= */
.custom-list.level-2 {
  counter-reset: item;
  margin-top: 14px;
  padding: 14px 18px;
  background: #f5f9ff;
  border-left: 4px solid #4a6fa5;
}

/* レベル2の各項目 */
.custom-list.level-2 > li {
  counter-increment: item;
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

/* レベル2番号（3.1形式） */
.custom-list.level-2 > li::before {
  content: counters(item, ".") " ";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #4a6fa5;
}

/* =========================
   補足タイトル（例：パソコンで認証する場合）
========================= */
.sub-title {
  display: block;
  font-weight: 600;
  color: #1b365f;
  margin-bottom: 4px;
}

/* =========================
   補足テキスト（ログイン完了の下など）
========================= */
.sub-text {
  display: block;
  margin-top: 6px;
  font-size: 0.95em;
  color: #555;
}

/* =========================
   レスポンシブ微調整
========================= */
@media (max-width: 640px) {
  .custom-list.level-1 > li,
  .custom-list.level-2 > li {
    padding-left: 1.8em;
  }

  .custom-list.level-2 {
    padding: 12px 14px;
  }
}

.icon {
  margin-right: 6px;
  font-size: 1.2em;
  vertical-align: middle;
}

.yt-tab-wrapper {
  margin-top: 20px;
}

/* タブボタンエリア */
.yt-tab-buttons {
  display: flex;
  gap: 12px;
  padding: 6px;
  margin-bottom: 24px; /* タブと動画の間 */
}

/* タブボタン基本 */
.yt-tab-button {
  flex: 1;
  padding: 10px 0;
  border: 1px solid #d0d7e2;
  background: #f4f7fb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* アクティブ */
.yt-tab-button.active {
  border: 2px solid #1f4fd8;
  background: #e0f0ff;
  color: #1f4fd8;
}

/* 動画エリア */
.yt-tab-content {
  margin-top: 10px;
}

/* レスポンシブ動画 */
.yt-tab-content iframe {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;   /* ← これが重要 */
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.notice-box {
  margin-top: 24px;
  padding: 16px 18px;
  background: #fff3e0;       /* 明るめクリームオレンジ */
  border: 1px solid #ffb74d; /* 柔らかめオレンジ枠 */
  border-left: 6px solid #ff9800; /* 強めオレンジで注意を強調 */
}

.notice-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #e65100;             /* 注意喚起っぽい濃オレンジ */
}

.notice-list {
  margin: 0;
  padding-left: 1.2em;
}

.notice-list li {
  margin-bottom: 6px;
  color: #5d4037;             /* 読みやすい濃い茶色 */
}

.contact-tab.orange {
  background: linear-gradient(135deg, #ff9f43, #ff7f11); /* タイトルと下枠用グラデ */

  max-width: 600px;  /* オレンジは狭め */
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  color: #fff;
}

.contact-tab.orange .contact-tab-header {
  font-weight: 600;
  font-size: 18px;
  padding: 12px 20px;
  border-bottom: 4px solid #ff7f11;
  width: 100%;
  box-sizing: border-box;

	
}

.contact-tab.orange .contact-tab-body {
  background: #fff8f0;  /* 本文は薄オレンジ系 */
  padding: 16px 20px;
  line-height: 1.6;
  color: #333;

}
.contact-tab.orange .contact-tab-body img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.contact-tab.red {
  background: linear-gradient(135deg, #d64545, #a33c3c); /* 落ち着いた赤系グラデ */
  max-width: 1200px;  /* 横幅はオレンジ版と同じ */
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  color: #fff;
}

.contact-tab.red .contact-tab-header {
  font-weight: 600;
  font-size: 18px;
  padding: 12px 20px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px 12px 0 0;
}

.contact-tab.red .contact-tab-body {
  background: #ffe5e5;  /* 薄い赤系 */
  padding: 16px 20px;
  line-height: 1.6;
  color: #333;
}

.contact-tab.red .contact-tab-body img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
/* ===== 青版（FAQ） ===== */
.faq-tab.blue {
  background: linear-gradient(145deg, #4a90e2, #1f4fd8);
  border-bottom: 4px solid #1f4fd8;
  padding: 20px 24px;
  color: #fff;
  max-width: 1200px; /* 幅を広く */
  margin: 20px auto;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.faq-tab.blue .faq-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-tab.blue .faq-body p {
  font-size: 16px;
  margin: 8px 0;
}

.faq-tab.blue .faq-body a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
/* アイコン付き丸背景 */
.icon-circle {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.4em;
  text-align: center;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  font-size: 0.9em;
  margin-right: 6px;
}

.icon-circle.blue { background: #4a90e2; }
.icon-circle.green { background: #28a745; }
.icon-circle.orange { background: #ff7f11; }

/* ---------- タブ全体ラッパー ---------- */
.notice-tab-wrapper {
  max-width: 1000px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* ---------- タブボタン ---------- */
.notice-tab-buttons {
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 12px;
  margin-bottom: 16px;
}

.notice-tab-button {
  padding: 12px 18px;
  background: #e0e0e0;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.notice-tab-button.active {
  background: #d0d0d0;
  color: #000;
  border-left: 6px solid #888; /* 左側強調ライン */
}

/* ---------- タブコンテンツ ---------- */
.notice-tab-content {
  display: none;
  background: #f9f9f9;
  border: 1px solid #b0b0b0;
  border-radius: 4px;
  padding: 16px;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
}

.notice-tab-content.active {
  display: block;
}

/* ---------- 個別通知ボックス ---------- */
.notice-box02 {
  background: #f0f0f0;
  padding: 16px 20px;
  border-left: 6px solid #999;
  border-radius: 4px;
  margin-bottom: 16px;
}

.notice-title02 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #444;
  font-size: 16px;
}

.notice-box02 p {
  margin: 8px 0;
}

.notice-box02 p strong {
  font-weight: 600;
  color: #222;
}

.notice-box02 a {
  color: #1b365f;
  text-decoration: underline;
}

.notice-box02 ul,
.notice-box02 ol {
  padding-left: 1.4em;
  margin: 8px 0;
}

.notice-box02 li {
  margin-bottom: 6px;
}

/* メディア対応：小さい画面では幅100% */
@media (max-width: 768px) {
  .notice-tab-wrapper {
    max-width: 100%;
    padding: 0 12px;
  }
}

.notice-tab-footer {
  max-width: 1000px;
  margin: 12px auto 40px auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.notice-tab-footer p {
  margin-bottom: 8px;
}

.notice-tab-footer .footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.notice-tab-footer .footer-links li {
  margin-bottom: 4px;
}

.notice-tab-footer .footer-links a {
  color: #1b365f;
  text-decoration: underline;
  font-weight: 600;
}