@charset "utf-8";

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", "MS PGothic", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; vertical-align: middle; border: 0; }
a { color: #081b88; text-decoration: underline; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
table { border-collapse: collapse; width: 100%; }

:root {
  --blue: #021853;
  --blue2: #081b88;
  --blue3: #0c1e86;
  --orange: #ffb340;
  --gray-bg: #eeeeee;
  --cream: #fcfcdd;
  --cream-bd: #ececaf;
  --max: 1000px;
  --sp: 640px;
}

/* ===== Utilities ===== */
.forPcBlock { display: block; }
.forSpBlock { display: none; }
.clearfix::after { content: ""; display: table; clear: both; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===== View toggle (member) ===== */
.view-toggle {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  text-align: right;
  padding: 4px 16px;
  font-size: 12px;
}
.view-toggle a {
  color: #666;
  text-decoration: none;
  margin-left: 14px;
}
.view-toggle a:hover,
.view-toggle a.active { color: var(--blue2); font-weight: bold; }

/* =========================================================
   INDEX PAGE (VJA issuer select)
========================================================= */
.vja-page { background: #fff; }

.vja-header {
  width: 100%;
  border-bottom: solid 10px var(--blue);
  background: #fff;
}
.vja-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px 10px;
}
.vja-header-inner img { height: 42px; width: auto; }

.vja-main {
  border-top: solid 2px var(--orange);
  margin-bottom: 0;
}
.vja-main-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 0 40px;
  background: var(--gray-bg);
  background-image: linear-gradient(to bottom, #eee 85%, #ffd890 100%);
}

.vja-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 10px 10px 0;
}
.vja-hero-left {
  flex: 1 1 50%;
  min-width: 280px;
  background: #fff;
  border-radius: 5px;
  margin: 0 5px 10px 10px;
  padding: 18px 16px 14px;
}
.vja-hero-left .vpass-logo {
  display: block;
  margin: 8px auto 18px;
  max-width: 280px;
  width: 70%;
}
.vja-hero-left .txt-area {
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}
.vja-hero-right {
  flex: 1 1 42%;
  min-width: 260px;
  padding: 18px 20px 10px 16px;
}
.vja-hero-right h2 {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--blue);
  border-bottom: solid 3px var(--blue);
  padding: 0 3px 4px;
  margin: 0 0 14px;
}
.vja-hero-right p {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.vja-hero-right .note {
  font-size: 12px;
  color: #444;
  padding-left: 1em;
  text-indent: -1em;
}

/* Issuer list */
.vja-group-list {
  max-width: var(--max);
  margin: 10px auto 0;
  padding: 10px 16px 20px;
  background: #fff;
}
.vja-group-list > h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--blue);
  border-bottom: solid 3px var(--blue);
  padding: 0 3px 4px;
  margin: 0 0 18px;
}
.issuer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 18px;
  align-items: start;
}
.issuer-col { min-width: 0; }
.issuer-section { margin-bottom: 14px; }
.issuer-section h3 {
  font-size: 13px;
  font-weight: normal;
  color: #fff !important;
  text-align: center;
  padding: 4px 0;
  margin: 0 0 8px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.issuer-section h3 .acdi-btn {
  display: none;
}
.issuer-section h3.col_a { background: #9d75b4; }
.issuer-section h3.col_k { background: #3778bc; }
.issuer-section h3.col_s { background: #26b1b7; }
.issuer-section h3.col_t { background: #25a06d; }
.issuer-section h3.col_n { background: #7ac142; }
.issuer-section h3.col_h { background: #ffd311; color: #333 !important; }
.issuer-section h3.col_m { background: #ea8623; }
.issuer-section h3.col_y { background: #f69faa; }
.issuer-section h3.col_r { background: #e76e7c; }

.issuer-section ul { margin: 0; padding: 0; }
.issuer-section .acdi-body { display: block; }
.issuer-section li { margin-bottom: 0.55em; }
.issuer-section a {
  color: #333 !important;
  text-decoration: underline;
  font-size: 13px;
  line-height: 1.4;
}
.issuer-section a:hover { color: var(--blue2) !important; }

/* Index footer */
.vja-footer {
  width: 100%;
  background: var(--blue);
  border-top: solid 10px var(--orange);
  margin-top: 0;
}
.vja-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 50px;
  position: relative;
}
.vja-footer a {
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
}
.vja-footer a:hover { text-decoration: underline; }
.vja-footer .footer-link-top {
  text-align: right;
  margin-bottom: 20px;
}
.vja-footer .footer-link-top a::before {
  content: "› ";
  color: var(--orange);
}
.vja-footer .copy {
  color: #fff;
  font-size: 11px;
  margin-top: 24px;
  opacity: 0.85;
}

/* =========================================================
   MEMBER PAGES
========================================================= */
.mem-page { background: #fff; }

/* Header */
#header {
  background: #fff;
  border-bottom: 1px solid #dde;
}
#header .h-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
#header .h-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
#header .h-left .company-logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
#header .h-left .company-name {
  font-size: 15px;
  font-weight: bold;
  color: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#header .h-left .vpass-mini {
  height: 28px;
  width: auto;
}
#header .h-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
#header .h-links {
  display: flex;
  gap: 12px;
  font-size: 12px;
}
#header .h-links a {
  color: var(--blue2);
  text-decoration: none;
}
#header .h-links a:hover { text-decoration: underline; }

.search-area {
  display: flex;
  border: 1px solid #99a;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}
.search-area input {
  border: 0;
  padding: 6px 10px;
  width: 180px;
  outline: none;
  font-size: 12px;
}
.search-area button {
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
}
.search-area button:hover { background: var(--blue2); }

.btn-menu {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid #ccd;
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  transition: 0.2s;
}
.btn-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-menu.active span:nth-child(2) { opacity: 0; }
.btn-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* gNavi */
#gNavi {
  background: #fff;
  border-bottom: 3px solid var(--blue);
  position: relative;
  z-index: 100;
}
#gNavi .gnavi-inner {
  max-width: 1100px;
  margin: 0 auto;
}
#gNavi ul.first {
  display: flex;
  justify-content: stretch;
}
#gNavi ul.first > li {
  flex: 1;
  position: relative;
  border-left: 1px solid #e0e4ef;
}
#gNavi ul.first > li:first-child { border-left: 0; }
#gNavi ul.first > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 12px;
  text-decoration: none;
  color: var(--blue3);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  min-height: 72px;
  transition: background 0.15s, color 0.15s;
}
#gNavi ul.first > li > a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
#gNavi ul.first > li > a:hover,
#gNavi ul.first > li.open > a,
#gNavi ul.first > li.active > a {
  background: var(--blue);
  color: #fff;
}
#gNavi ul.first > li > a:hover img.icon-n,
#gNavi ul.first > li.open > a img.icon-n,
#gNavi ul.first > li.active > a img.icon-n { display: none; }
#gNavi ul.first > li > a img.icon-h { display: none; }
#gNavi ul.first > li > a:hover img.icon-h,
#gNavi ul.first > li.open > a img.icon-h,
#gNavi ul.first > li.active > a img.icon-h { display: inline-block; }

/* Mega menu */
.menu-box {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #f7f9fc;
  border: 1px solid #c5cde0;
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 20px rgba(2,24,83,0.12);
  z-index: 200;
}
#gNavi ul.first > li.open .menu-box { display: block; }
.menu-box .menu-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px 22px;
  display: flex;
  gap: 30px;
}
.menu-box .menu-left { flex: 1; }
.menu-box .menu-ttl {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--blue);
}
.menu-box .menu-ttl a {
  color: var(--blue);
  text-decoration: none;
}
.menu-box .menu-ttl a:hover { text-decoration: underline; }
.menu-box .menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
}
.menu-box .menu-list a {
  display: block;
  padding: 6px 0 6px 14px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  position: relative;
}
.menu-box .menu-list a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue2);
  font-weight: bold;
}
.menu-box .menu-list a:hover {
  color: var(--blue2);
  text-decoration: underline;
}
.menu-box .menu-right {
  width: 220px;
  flex-shrink: 0;
}
.menu-box .menu-right .bnr {
  display: block;
  margin-bottom: 10px;
  border: 1px solid #dde;
  background: #fff;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--blue2);
  font-size: 12px;
}
.menu-box .menu-right .bnr img {
  max-width: 100%;
  margin-bottom: 6px;
}

/* Side drawer (SP) */
.side-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.side-drawer.open { display: block; }
.side-drawer .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.side-drawer .panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  padding: 16px;
}
.side-drawer .panel .close-btn {
  float: right;
  border: 0;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.side-drawer .panel h3 {
  clear: both;
  color: var(--blue);
  font-size: 14px;
  margin: 16px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--blue);
}
.side-drawer .panel a {
  display: block;
  padding: 10px 4px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
  font-size: 13px;
}
.side-drawer .panel a:hover { background: #f5f7fb; color: var(--blue2); }

/* Breadcrumb */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  font-size: 12px;
  color: #666;
}
.breadcrumb a { color: var(--blue2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: #999; }

/* Main content wrap */
.mem-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* Member top: key visual L + login R */
.mem-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0 24px;
  align-items: stretch;
}
.mem-top-left {
  flex: 1 1 620px;
  min-width: 0;
}
.mem-top-right {
  flex: 0 0 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0 20px;
  align-items: stretch;
}
.login-box {
  flex: 1 1 auto;
  background: linear-gradient(180deg, #eef2fa 0%, #e4eaf6 100%);
  border: 1px solid #c5cde0;
  border-radius: 4px;
  padding: 16px 18px;
}
.first-user-box {
  background: #fff;
  border: 1px solid #c5cde0;
  border-radius: 4px;
  padding: 18px 16px 16px;
  text-align: center;
}
.first-user-box .ttl {
  font-size: 14px;
  font-weight: bold;
  color: var(--blue);
  margin: 0 0 14px;
}
.btn-register {
  display: block;
  width: 100%;
  padding: 12px 10px;
  background: #fff;
  border: 2px solid var(--blue2);
  border-radius: 3px;
  color: var(--blue2);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}
.btn-register:hover {
  background: #f0f4fc;
  text-decoration: none;
}
.first-user-box .sub {
  margin: 12px 0 0;
  font-size: 12px;
}
.first-user-box .sub a { color: var(--blue2); }
.login-box .logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.login-box .logo-row img { height: 28px; }
.login-box .logo-row a {
  font-size: 12px;
  color: var(--blue2);
}
.login-box form .fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #99a;
  border-radius: 2px;
  font-size: 14px;
  background: #fff;
}
.login-box input:focus {
  outline: 2px solid var(--blue2);
  outline-offset: 0;
  border-color: var(--blue2);
}
.btn-login {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, #2a4db0 0%, #021853 100%);
  color: #fff !important;
  border: 0;
  border-radius: 3px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.btn-login:hover {
  background: linear-gradient(180deg, #3a5dc0 0%, #0a2870 100%);
}
.login-side {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-side a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #c5cde0;
  border-radius: 3px;
  text-decoration: none;
  color: var(--blue2);
  font-size: 13px;
  font-weight: bold;
}
.login-side a:hover { background: #f5f7fb; }
.login-side a img { height: 36px; width: auto; }
.quick-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}
@media (max-width: 900px) {
  .quick-links { grid-template-columns: repeat(2, 1fr); }
}
.quick-links a {
  flex-direction: column;
  text-align: center;
  font-size: 11px;
  padding: 12px 6px;
  gap: 6px;
}
.quick-links a img { height: 40px; }

/* Key visual */
.key-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a1a4a;
  border-radius: 2px;
  height: 100%;
  min-height: 280px;
}
.key-visual .slides {
  display: flex;
  transition: transform 0.45s ease;
  height: 100%;
}
.key-visual .slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
}
.key-visual .slide a { display: block; height: 100%; }
.key-visual .slide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  display: block;
  object-fit: cover;
}
.key-visual .controls {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.key-visual .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.key-visual .dot.active { background: #fff; }
.key-visual .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 48px;
  background: rgba(2,24,83,0.55);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}
.key-visual .nav-btn:hover { background: rgba(2,24,83,0.8); }
.key-visual .nav-prev { left: 0; }
.key-visual .nav-next { right: 0; }

/* Section titles */
.sec-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--blue);
  border-bottom: solid 3px var(--blue);
  padding: 0 3px 4px;
  margin: 28px 0 16px;
}

/* Service button grid */
.service-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}
.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px 12px;
  background: #fff;
  border: 1px solid #c5cde0;
  border-radius: 4px;
  text-decoration: none;
  color: var(--blue3);
  font-size: 12px;
  font-weight: bold;
  transition: box-shadow 0.15s, border-color 0.15s;
  min-height: 110px;
}
.service-btn:hover {
  border-color: var(--blue2);
  box-shadow: 0 4px 12px rgba(2,24,83,0.12);
  text-decoration: none;
}
.service-btn img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Recommend services */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.recommend-card {
  display: block;
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #f4f6fb 100%);
  border: 1px solid #c5cde0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.15s;
}
.recommend-card:hover {
  box-shadow: 0 4px 14px rgba(2,24,83,0.12);
  text-decoration: none;
}
.recommend-card .lbl {
  display: block;
  color: var(--blue);
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}
.recommend-card .desc {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* Important notice */
.important-box {
  background: #fff8f0;
  border: 1px solid #f0c080;
  border-left: 5px solid #e07020;
  padding: 14px 16px;
  margin: 20px 0;
}
.important-box .ttl {
  font-weight: bold;
  color: #c04000;
  margin-bottom: 10px;
  font-size: 14px;
}
.important-box dl { font-size: 13px; }
.important-box dt {
  float: left;
  width: 110px;
  color: #666;
  clear: left;
  padding: 4px 0;
}
.important-box dd {
  margin-left: 110px;
  padding: 4px 0 10px;
  border-bottom: 1px dotted #e8d0b0;
}
.important-box dd:last-child { border-bottom: 0; }

/* Information tabs */
.info-tabs { margin: 10px 0 30px; }
.tab-heads {
  display: flex;
  border-bottom: 2px solid var(--blue);
  gap: 2px;
}
.tab-heads button {
  flex: 0 1 auto;
  padding: 10px 20px;
  border: 1px solid #c5cde0;
  border-bottom: 0;
  background: #eef1f7;
  color: var(--blue2);
  font-weight: bold;
  cursor: pointer;
  font-size: 13px;
  border-radius: 4px 4px 0 0;
}
.tab-heads button.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.tab-body {
  display: none;
  border: 1px solid #c5cde0;
  border-top: 0;
  padding: 16px;
  background: #fff;
}
.tab-body.active { display: block; }
.tab-body dl { font-size: 13px; }
.tab-body dt {
  float: left;
  width: 110px;
  color: #666;
  clear: left;
  padding: 6px 0;
}
.tab-body dd {
  margin-left: 110px;
  padding: 6px 0 10px;
  border-bottom: 1px dotted #ddd;
  line-height: 1.6;
}
.tab-body dd:last-child { border-bottom: 0; }
.tip-boxes { margin-top: 16px; display: grid; gap: 10px; }
.tip-box {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: #f5f7fb;
  border: 1px solid #dde3f0;
  font-size: 12px;
  line-height: 1.6;
}
.tip-box .ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Banner strip */
.bnr-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.bnr-strip a {
  display: block;
  border: 1px solid #dde;
  background: #fff;
  text-align: center;
  padding: 8px;
  text-decoration: none;
}
.bnr-strip a:hover { border-color: var(--blue2); }
.bnr-strip img { max-height: 60px; width: auto; }

/* Subpage content cards */
.page-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--blue);
  border-bottom: solid 3px var(--blue);
  padding: 0 3px 6px;
  margin: 10px 0 18px;
}
.card {
  background: #fff;
  border: 1px solid #c5cde0;
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}
.card-header {
  background: linear-gradient(180deg, #eef2fa 0%, #e0e6f4 100%);
  border-bottom: 1px solid #c5cde0;
  padding: 12px 16px;
  font-weight: bold;
  color: var(--blue);
  font-size: 15px;
}
.card-body { padding: 16px 18px; }
.card-body p { margin-bottom: 10px; font-size: 13px; line-height: 1.7; }
.card-body h3 {
  font-size: 14px;
  color: var(--blue2);
  margin: 14px 0 8px;
  padding-left: 10px;
  border-left: 4px solid var(--orange);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none !important;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(180deg, #2a4db0 0%, #021853 100%);
  color: #fff !important;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline {
  background: #fff;
  border-color: var(--blue2);
  color: var(--blue2) !important;
}
.btn-outline:hover { background: #f0f4ff; }
.btn-sm { padding: 6px 14px; font-size: 12px; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.feature-item {
  display: block;
  padding: 16px;
  border: 1px solid #c5cde0;
  border-radius: 4px;
  background: #fff;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.15s;
}
.feature-item:hover { box-shadow: 0 4px 12px rgba(2,24,83,0.1); }
.feature-item h4 {
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 6px;
}
.feature-item p { font-size: 12px; color: #555; margin: 0; }

.data-table {
  width: 100%;
  font-size: 13px;
  margin: 10px 0;
}
.data-table th,
.data-table td {
  border: 1px solid #c5cde0;
  padding: 10px 12px;
  text-align: left;
}
.data-table th {
  background: #eef2fa;
  color: var(--blue);
  font-weight: bold;
  width: 30%;
}
.data-table tr:nth-child(even) td { background: #fafbfe; }

.notice-box {
  padding: 14px 16px;
  border-radius: 4px;
  margin: 14px 0;
  font-size: 13px;
  line-height: 1.7;
}
.notice-box.info {
  background: #eef4ff;
  border: 1px solid #b0c4e8;
}
.notice-box.warn {
  background: #fff8e8;
  border: 1px solid #e8c880;
}
.notice-box.danger {
  background: #fff0f0;
  border: 1px solid #e8a0a0;
}

.form-row {
  margin-bottom: 14px;
}
.form-row label {
  display: block;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 12px;
  border: 1px solid #99a;
  border-radius: 2px;
  font-size: 14px;
}
.form-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}
.sidebar-box {
  border: 1px solid #c5cde0;
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.sidebar-box-title {
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  font-weight: bold;
  font-size: 13px;
}
.sidebar-box-body { padding: 10px 14px; }
.sidebar-box-body a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dotted #dde;
  color: var(--blue2);
  text-decoration: none;
  font-size: 13px;
}
.sidebar-box-body a:last-child { border-bottom: 0; }
.sidebar-box-body a:hover { text-decoration: underline; }

/* Member footer */
.mem-footer {
  background: #f0f2f7;
  border-top: 4px solid var(--blue);
  margin-top: 30px;
  padding: 30px 0 0;
}
.mem-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px 12px;
  padding-bottom: 24px;
}
.footer-col h4 {
  font-size: 13px;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  padding: 3px 0;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--blue2); text-decoration: underline; }
.footer-bottom {
  background: var(--blue);
  color: #fff;
  padding: 16px;
  margin-top: 10px;
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 11px;
}
.footer-bottom a {
  color: #fff !important;
  text-decoration: none;
  margin-right: 14px;
}
.footer-bottom a:hover { text-decoration: underline; }

/* Sub-nav for section pages */
.sub-nav {
  background: #eef2fa;
  border-bottom: 1px solid #c5cde0;
}
.sub-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: auto;
}
.sub-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--blue2);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.sub-nav a:hover,
.sub-nav a.active {
  background: #fff;
  border-bottom-color: var(--orange);
  font-weight: bold;
}

/* Login result toast */
.login-msg {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
  font-size: 13px;
  border-radius: 3px;
}
.login-msg.show { display: block; }
.login-msg.err {
  background: #ffebee;
  border-color: #ef9a9a;
  color: #b71c1c;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .issuer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-btn-grid { grid-template-columns: repeat(3, 1fr); }
  .recommend-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .menu-box .menu-list { grid-template-columns: 1fr; }
  .menu-box .menu-right { display: none; }
  .mem-top-row { flex-direction: column; }
  .mem-top-left { flex: 1 1 100%; }
  .mem-top-right { flex: 1 1 100%; width: 100%; max-width: 420px; margin: 0 auto; }
  .key-visual .slide img { max-height: 280px; min-height: 200px; }
}

@media (max-width: 640px) {
  .forPcBlock { display: none !important; }
  .forSpBlock { display: block !important; }

  .vja-header-inner { text-align: center; padding: 6px 10px; }
  .vja-header-inner img { height: 36px; }
  .vja-header { border-bottom-width: 6px; }
  .vja-main-inner {
    background: var(--gray-bg);
    padding: 10px 0 20px;
  }
  .vja-hero { padding: 0; }
  .vja-hero-left {
    margin: 0 10px 10px;
    flex: 1 1 100%;
  }
  .vja-hero-left .vpass-logo { width: 60%; max-width: 220px; }
  .vja-hero-right {
    flex: 1 1 100%;
    padding: 10px 16px;
  }
  .vja-hero-right h2 { font-size: 1.15rem; }
  .vja-group-list { padding: 10px 10px 16px; }
  .vja-group-list > h2 { font-size: 1.15rem; }
  .issuer-grid { grid-template-columns: 1fr; gap: 0; }
  .issuer-section { margin-bottom: 2px; }
  .issuer-section h3 {
    padding: 12px 40px 12px 12px;
    text-align: left;
    font-size: 14px;
    position: relative;
  }
  .issuer-section h3 .acdi-btn {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    background: rgba(255,255,255,0.25);
    padding: 2px 8px;
    border-radius: 2px;
  }
  .issuer-section h3.col_h .acdi-btn { background: rgba(0,0,0,0.1); }
  .issuer-section .acdi-body {
    display: none;
    background: #fff;
  }
  .issuer-section.open .acdi-body { display: block; }
  .issuer-section li { margin: 0; }
  .issuer-section a {
    display: block;
    padding: 12px 15px;
    border: 1px solid #ededed;
    border-top: 0;
    background: linear-gradient(to bottom, #fff 0%, #e8e8e8 100%);
    color: var(--blue2) !important;
    text-decoration: none !important;
    font-size: 14px;
  }
  .issuer-section li:first-child a { border-top: 1px solid #ededed; }
  .vja-footer { border-top-width: 6px; }
  .vja-footer-inner { padding: 20px 14px 36px; }

  /* Member SP */
  #header .h-inner { padding: 8px 12px; }
  #header .h-links { display: none; }
  #header .search-area { display: none; }
  #header .company-name { font-size: 13px; max-width: 140px; }
  .btn-menu { display: flex; }

  #gNavi { display: none; }
  #gNavi.mobile-open {
    display: block;
    border-bottom: 0;
  }
  #gNavi ul.first {
    flex-direction: column;
  }
  #gNavi ul.first > li {
    border-left: 0;
    border-bottom: 1px solid #e0e4ef;
  }
  #gNavi ul.first > li > a {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
  }
  #gNavi .menu-box {
    position: static;
    border: 0;
    border-top: 0;
    box-shadow: none;
    background: #f0f3f9;
  }
  #gNavi ul.first > li.open .menu-box { display: block; }
  .menu-box .menu-body { padding: 8px 12px 12px; flex-direction: column; }
  .menu-box .menu-list { grid-template-columns: 1fr; }

  .login-area { flex-direction: column; }
  .mem-top-row { flex-direction: column; gap: 12px; }
  .mem-top-right { width: 100%; max-width: none; }
  .quick-links { display: grid; grid-template-columns: 1fr; }
  .service-btn-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-btn { min-height: 96px; padding: 12px 6px; font-size: 11px; }
  .recommend-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .important-box dt,
  .tab-body dt {
    float: none;
    width: auto;
    font-weight: bold;
    padding-bottom: 0;
  }
  .important-box dd,
  .tab-body dd {
    margin-left: 0;
    padding-top: 2px;
  }
  .key-visual .nav-btn { width: 28px; height: 40px; font-size: 16px; }
  .data-table th { width: 40%; font-size: 12px; }
  .data-table td { font-size: 12px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom a { display: inline-block; margin: 4px 8px; }
}

@media (max-width: 400px) {
  .service-btn-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .view-toggle, .btn-menu, #gNavi, .key-visual .controls, .key-visual .nav-btn { display: none !important; }
}
