/* ========== CSS Variables ========== */
:root {
  --navy:        #1a2a4a;
  --navy-dark:   #0f1a2e;
  --navy-mid:    #2a4a7a;
  --gold:        #c8922a;
  --gold-light:  #fdf5e8;
  --green:       #2a7a4a;
  --gray-light:  #f7f8fb;
  --gray-bg:     #eef0f5;
  --border:      #e0e8f0;
  --text:        #333;
  --text-muted:  #888;
  --radius:      4px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --container:   1080px;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .85; }
address { font-style: normal; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ========== Container ========== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: bold;
  border-radius: var(--radius);
  text-align: center;
  transition: opacity .2s, transform .1s;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn--navy   { background: var(--navy); color: #fff; }
.btn--gold   { background: var(--gold); color: #fff; }
.btn--white  { background: #fff; color: var(--navy); }
.btn--outline-navy { border: 2px solid var(--navy); color: var(--navy); }
.btn--lg     { padding: 14px 36px; font-size: 15px; }
.btn--sm     { padding: 8px 18px; font-size: 12px; }

/* ========== Top Bar ========== */
.top-bar { background: var(--navy-dark); padding: 5px 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar__text  { font-size: 11px; color: #7a9aba; }
.top-bar__links { display: flex; gap: 20px; }
.top-bar__links a { font-size: 11px; color: #7a9aba; }
.top-bar__links a:hover { color: var(--gold); }

/* ========== Site Header ========== */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.header__inner { display: flex; align-items: center; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.header__logo a { display: block; }
.header__logo img { height: 52px; width: auto; }
.header__logo-text { font-size: 14px; font-weight: bold; color: var(--navy); }

.header__nav { flex: 1; }
.nav-menu { display: flex; justify-content: center; list-style: none; }
.nav-menu > li > a {
  display: block;
  font-size: 12px;
  color: #444;
  padding: 8px 14px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: bold;
  opacity: 1;
}

.header__cta { flex-shrink: 0; display: flex; align-items: center; gap: 16px; }
.header__tel { text-align: right; }
.header__tel-label { font-size: 10px; color: var(--text-muted); display: block; }
.header__tel-num { font-size: 20px; font-weight: bold; color: var(--navy); display: block; letter-spacing: 1px; }
.header__tel-hours { font-size: 10px; color: #aaa; display: block; }

/* ========== Hamburger ========== */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Hero ========== */
.hero { position: relative; min-height: 460px; display: flex; align-items: center; overflow: hidden; background: var(--navy-dark); }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__bg--default { background: linear-gradient(135deg, #b8c4d4, #ccd4e0); }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(15,26,46,.82) 38%, rgba(15,26,46,.30)); }

/* ========== Hero Slideshow ========== */
.hero__slideshow { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero__slide--active { opacity: 1; }
.hero__slide-caption {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(200,146,42,.88); color: #fff; font-size: 11px; font-weight: bold;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
  opacity: 0; transition: opacity .6s ease .5s; pointer-events: none;
}
.hero__slide--active .hero__slide-caption { opacity: 1; }
.hero__indicators {
  position: absolute; bottom: 24px; left: 24px; z-index: 3;
  display: flex; gap: 8px; align-items: center;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .3s, transform .3s;
  padding: 0;
}
.hero__dot--active { background: var(--gold); transform: scale(1.4); }
.hero__content { position: relative; z-index: 2; padding: 64px 0; max-width: 560px; }
.hero__badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero__title { font-size: 30px; color: #fff; font-weight: bold; line-height: 1.5; margin-bottom: 12px; }
.hero__title em { color: var(--gold); font-style: normal; }
.hero__lead { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.9; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__scroll-link { font-size: 12px; color: rgba(255,255,255,.75); text-decoration: underline; }
.hero__badges { position: absolute; bottom: 24px; right: 24px; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.trust-badge {
  background: rgba(255,255,255,.93);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.trust-badge__icon {
  width: 36px; height: 36px;
  background: var(--gray-bg);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #556; text-align: center;
  flex-shrink: 0;
}
.trust-badge__text { font-size: 11px; color: #333; line-height: 1.4; }

/* ========== Stats Bar ========== */
.stats-bar { background: var(--navy); }
.stats-bar__inner { display: flex; }
.stat { flex: 1; text-align: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat__num { font-size: 36px; font-weight: bold; color: #fff; line-height: 1.1; font-family: 'Montserrat', sans-serif; }
.stat__unit { font-size: 14px; color: var(--gold); }
.stat__label { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 6px; }

/* ========== Sections ========== */
.sec { padding: 56px 0; }
.sec--light { background: var(--gray-light); }
.sec-divider { border: none; border-top: 1px solid var(--border); }

.sec__head { text-align: center; margin-bottom: 40px; }
.sec__head-left { margin-bottom: 28px; }
.sec__head-flex { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.sec__en { font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.sec__title { font-size: 24px; font-weight: bold; color: var(--navy); margin-bottom: 8px; }
.sec__desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.sec__more { text-align: center; margin-top: 28px; }
.sec__note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ========== Cards ========== */
.card-grid { display: grid; gap: 20px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card--center { text-align: center; }
.card__icon { width: 56px; height: 56px; border-radius: 10px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card__icon-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.card__title { font-size: 14px; font-weight: bold; color: var(--navy); margin-bottom: 8px; }
.card__body { font-size: 12px; color: #666; line-height: 1.85; }
.card__link { font-size: 12px; color: var(--gold); margin-top: 12px; display: block; }

/* ========== Flow Steps ========== */
.flow-steps { display: flex; }
.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}
.flow-step:last-child { border-right: 1px solid var(--border); }
.flow-step::after {
  content: '▶';
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 12px;
  z-index: 1;
  background: #fff;
  padding: 2px 0;
}
.flow-step:last-child::after { display: none; }
.flow-step__num {
  width: 34px; height: 34px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold;
  margin: 0 auto 10px;
}
.flow-step__title { font-size: 12px; font-weight: bold; color: var(--navy); margin-bottom: 4px; line-height: 1.4; }
.flow-step__period { font-size: 11px; color: var(--gold); }

/* ========== Mid CTA ========== */
.mid-cta { background: linear-gradient(90deg, var(--navy), var(--navy-mid)); padding: 32px 0; }
.mid-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.mid-cta__title { font-size: 16px; color: #fff; font-weight: bold; margin-bottom: 4px; }
.mid-cta__desc { font-size: 12px; color: rgba(255,255,255,.75); }
.mid-cta__actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.mid-cta__tel { font-size: 20px; font-weight: bold; color: #fff; white-space: nowrap; }

/* ========== Occupation Grid ========== */
.occupation-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.occupation-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 18px 10px; text-align: center; }
.occupation-card__icon { width: 56px; height: 56px; background: var(--gray-bg); border-radius: 10px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
.occupation-card__title { font-size: 13px; font-weight: bold; margin-bottom: 4px; }
.occupation-card__sub { font-size: 10px; color: var(--text-muted); }

/* ========== Tokutei Banner ========== */
.tokutei-banner { background: linear-gradient(90deg, var(--green), #3a9a5a); }
.tokutei-banner__inner { display: flex; align-items: center; gap: 20px; padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap; }
.tokutei-banner__label { background: #fff; color: var(--green); font-size: 11px; font-weight: bold; padding: 4px 12px; border-radius: 20px; flex-shrink: 0; }
.tokutei-banner__body { flex: 1; }
.tokutei-banner__title { font-size: 14px; color: #fff; font-weight: bold; margin-bottom: 2px; }
.tokutei-banner__sub { font-size: 12px; color: rgba(255,255,255,.85); }
.tokutei-banner__btn { flex-shrink: 0; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.5); color: #fff; padding: 10px 18px; font-size: 12px; border-radius: var(--radius); }

/* ========== Compliance Band ========== */
.compliance-band { background: #f0f5ff; border-top: 4px solid var(--navy); }
.compliance-band__inner { display: flex; align-items: center; gap: 24px; padding-top: 28px; padding-bottom: 28px; flex-wrap: wrap; }
.compliance-band__icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #9aabcc; text-align: center;
  flex-shrink: 0;
}
.compliance-band__body { flex: 1; }
.compliance-band__title { font-size: 14px; font-weight: bold; color: var(--navy); margin-bottom: 6px; }
.compliance-band__desc { font-size: 12px; color: #557; line-height: 1.7; }

/* ========== News List ========== */
.news-list { list-style: none; }
.news-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.news-item__date { font-size: 12px; color: var(--text-muted); white-space: nowrap; min-width: 80px; }
.news-item__cat {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: bold;
  min-width: 60px;
  text-align: center;
}
.news-item__cat--blue   { background: #e0e8f8; color: var(--navy); }
.news-item__cat--green  { background: #e0f0e8; color: var(--green); }
.news-item__cat--gold   { background: var(--gold-light); color: #8a6010; }
.news-item__cat--red    { background: #fde8e0; color: #8a2010; }
.news-item__title { font-size: 13px; color: var(--text); flex: 1; }
.news-item__title:hover { color: var(--navy); }
.news-item__arrow { font-size: 16px; color: #ccc; }

/* ========== Footer CTA ========== */
.footer-cta { background: var(--navy); padding: 60px 0; text-align: center; }
.footer-cta__title { font-size: 24px; color: #fff; font-weight: bold; margin-bottom: 8px; }
.footer-cta__desc { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.8; }
.footer-cta__actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.footer-cta__tel { text-align: center; }
.footer-cta__tel-label { font-size: 11px; color: rgba(255,255,255,.55); display: block; margin-bottom: 4px; }
.footer-cta__tel-num { font-size: 28px; font-weight: bold; color: #fff; display: block; }
.footer-cta__tel-hours { font-size: 11px; color: rgba(255,255,255,.45); display: block; }

/* ========== Site Footer ========== */
.site-footer { background: var(--navy-dark); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-top: 52px; padding-bottom: 52px; }
.footer__logo-text { font-size: 14px; font-weight: bold; color: #9aabcc; margin-bottom: 12px; }
.footer__address { font-size: 11px; color: #5a7a9a; line-height: 2.1; margin-top: 12px; }
.footer__cert { font-size: 10px; color: #4a6a8a; margin-top: 12px; padding-top: 12px; border-top: 1px solid #1a2a4a; line-height: 1.8; }
.footer__col-title { font-size: 12px; color: #8aaabb; font-weight: bold; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #1a2a4a; }
.footer__links li { font-size: 11px; color: #4a6a8a; padding: 5px 0; border-bottom: 1px dotted #1a2a4a; }
.footer__links li:hover { color: #9aabcc; }
.footer__bottom { background: #060e1a; padding: 14px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__copy { font-size: 10px; color: #3a4a5a; }
.footer__bottom-links a { font-size: 10px; color: #3a4a5a; margin-left: 16px; }

/* ========== Sub Hero ========== */
.sub-hero { min-height: 150px; background: linear-gradient(135deg, #c8d4e0, #d8e4f0); display: flex; align-items: flex-end; padding-bottom: 28px; position: relative; overflow: hidden; }
.sub-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,26,46,.55), transparent 70%); }
.sub-hero__content { position: relative; z-index: 1; }
.sub-hero__en { font-size: 10px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 4px; }
.sub-hero__title { font-size: 26px; font-weight: bold; color: #fff; }

/* ========== Breadcrumb ========== */
.breadcrumb { padding: 10px 0; font-size: 11px; color: #aaa; background: #f8f9fb; border-bottom: 1px solid var(--border); }
.breadcrumb em { color: var(--gold); font-style: normal; }

/* ========== Page Tabs ========== */
.page-tabs { border-bottom: 2px solid var(--border); background: #fff; }
.page-tabs__inner { display: flex; overflow-x: auto; }
.page-tab {
  font-size: 12px;
  padding: 14px 18px;
  color: var(--text-muted);
  white-space: nowrap;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.page-tab--active { color: var(--navy); font-weight: bold; border-bottom-color: var(--gold); }
.page-tab:hover { color: var(--navy); opacity: 1; }

/* ========== About Page ========== */
.about-greeting { display: grid; grid-template-columns: 1fr 2fr; gap: 44px; align-items: start; }
.about-greeting__photo { text-align: center; }
.about-greeting__img, .about-greeting__img-placeholder {
  width: 100%; border-radius: 6px;
  margin-bottom: 12px;
}
.about-greeting__img-placeholder { height: 320px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.about-greeting__name { font-size: 15px; font-weight: bold; color: var(--navy); }
.about-greeting__org { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.about-greeting__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.about-greeting__text p { font-size: 13px; color: #444; line-height: 2.1; margin-bottom: 16px; }

/* ========== Tags ========== */
.tag { display: inline-block; background: var(--gray-bg); color: var(--navy); font-size: 11px; padding: 4px 12px; border-radius: 20px; }
.tag--gold { background: var(--gold-light); color: #8a6010; }
.link--gold { color: var(--gold); }

/* ========== Data Table ========== */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th, .data-table td { padding: 13px 18px; border: 1px solid var(--border); line-height: 1.7; }
.data-table th { background: #f0f3f8; font-weight: bold; color: var(--navy); width: 200px; vertical-align: top; }
.data-table td { color: #444; }

/* ========== Access ========== */
.access-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
.access-map iframe, .contact-map iframe { width: 100%; height: 360px; border: none; border-radius: var(--radius); }
.map-placeholder { height: 220px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); border-radius: var(--radius); font-size: 12px; text-align: center; }
.access-info address { font-size: 13px; line-height: 2.1; margin-bottom: 12px; }
.access-info__tel { font-size: 16px; font-weight: bold; color: var(--navy); margin-top: 12px; }

/* ========== Service Cards ========== */
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 22px; }
.service-card--navy  { border-left: 4px solid var(--navy); }
.service-card--gold  { border-left: 4px solid var(--gold); }
.service-card--blue  { border-left: 4px solid #2a6a9a; }
.service-card--green { border-left: 4px solid var(--green); }
.service-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.service-card__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold; color: #fff;
  flex-shrink: 0;
}
.service-card--navy  .service-card__num { background: var(--navy); }
.service-card--gold  .service-card__num { background: var(--gold); }
.service-card--blue  .service-card__num { background: #2a6a9a; }
.service-card--green .service-card__num { background: var(--green); }
.service-card__title { font-size: 14px; font-weight: bold; color: var(--navy); }
.service-card__list { font-size: 12px; color: #555; line-height: 2; padding-left: 16px; list-style: disc; }

/* ========== Occupation Tags ========== */
.occupation-tags { display: flex; flex-direction: column; gap: 12px; }
.occ-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.occ-group__cat { font-size: 12px; font-weight: bold; color: var(--navy); min-width: 80px; }

/* ========== Cost Table ========== */
.cost-table-wrap { overflow-x: auto; }
.cost-table thead th { background: var(--navy); color: #fff; }
.cost-table__total td { background: #f0f3f8; font-weight: bold; }

/* ========== FAQ ========== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); margin-bottom: 6px; border-radius: var(--radius); overflow: hidden; }
.faq-item__q {
  width: 100%;
  padding: 14px 20px;
  background: var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  color: var(--navy);
}
.faq-item__icon { width: 22px; height: 22px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.faq-item__a { padding: 14px 20px; font-size: 12px; color: #555; line-height: 1.85; border-top: 1px solid var(--border); }

/* ========== Info Box ========== */
.info-box { background: #f0f5ff; border-left: 4px solid var(--navy); padding: 16px 20px; border-radius: 0 6px 6px 0; margin: 16px 0; }
.info-box__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 12px; }
.info-box__list dt { color: var(--text-muted); }
.info-box__list dd { color: var(--text); font-weight: bold; }

/* ========== Visa Cards ========== */
.visa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.visa-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 22px; border-top: 4px solid; }
.visa-card--navy  { border-top-color: var(--navy); }
.visa-card--gold  { border-top-color: var(--gold); }
.visa-card--green { border-top-color: var(--green); }
.visa-card__title { font-size: 16px; font-weight: bold; margin-bottom: 14px; }
.visa-card--navy  .visa-card__title { color: var(--navy); }
.visa-card--gold  .visa-card__title { color: var(--gold); }
.visa-card--green .visa-card__title { color: var(--green); }
.visa-card__dl { font-size: 12px; }
.visa-card__dl div { display: flex; gap: 12px; padding: 6px 0; border-bottom: 1px dotted var(--border); }
.visa-card__dl dt { color: var(--text-muted); min-width: 60px; }

/* ========== Flow Detail ========== */
.flow-detail { display: flex; flex-direction: column; gap: 0; }
.flow-detail__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.flow-detail__num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: bold;
  flex-shrink: 0;
}
.flow-detail__body { flex: 1; }
.flow-detail__title { font-size: 14px; font-weight: bold; color: var(--navy); margin-bottom: 4px; }
.flow-detail__desc { font-size: 12px; color: var(--text-muted); }
.flow-detail__period { font-size: 12px; color: var(--gold); font-weight: bold; white-space: nowrap; }

/* ========== Compliance ========== */
.compliance-box { background: var(--gray-light); border-radius: 6px; padding: 28px; }
.compliance-box__title { font-size: 16px; font-weight: bold; color: var(--navy); margin-bottom: 12px; }
.compliance-list { margin-top: 12px; padding-left: 20px; list-style: disc; }
.compliance-list li { font-size: 13px; color: #444; padding: 4px 0; }

/* ========== Diagram Placeholder ========== */
.diagram-placeholder { height: 240px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 13px; color: var(--text-muted); text-align: center; line-height: 2; }
.system-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.system-overview__text p { font-size: 13px; color: #444; line-height: 2.1; }

/* ========== Language Cards ========== */
.lang-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lang-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 20px; text-align: center; }
.lang-card__flag { font-size: 28px; margin-bottom: 10px; }
.lang-card__name { font-size: 13px; font-weight: bold; margin-bottom: 4px; }
.lang-card__native { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.lang-card__status { font-size: 11px; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.lang-card__status--staff    { background: #e0f0e8; color: var(--green); }
.lang-card__status--english  { background: var(--gold-light); color: #8a6010; }
.lang-card__status--arranged { background: var(--gray-bg); color: var(--text-muted); }

/* ========== Contact Page ========== */
.form-steps { display: flex; max-width: 560px; margin: 0 auto 32px; }
.form-step { flex: 1; text-align: center; padding: 10px; font-size: 12px; color: var(--text-muted); border-bottom: 3px solid #ddd; }
.form-step--active { color: var(--navy); font-weight: bold; border-bottom-color: var(--navy); }

.contact-types { margin-bottom: 36px; }
.contact-types__label { text-align: center; font-size: 13px; font-weight: bold; color: var(--navy); margin-bottom: 16px; }
.contact-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-type-card { border: 2px solid var(--border); border-radius: 6px; padding: 20px; text-align: center; border-top: 4px solid; }
.contact-type-card--navy  { border-top-color: var(--navy); }
.contact-type-card--gold  { border-top-color: var(--gold); }
.contact-type-card--green { border-top-color: var(--green); }
.contact-type-card__icon  { font-size: 28px; margin-bottom: 8px; }
.contact-type-card__title { font-size: 13px; font-weight: bold; margin-bottom: 4px; }
.contact-type-card--navy  .contact-type-card__title { color: var(--navy); }
.contact-type-card--gold  .contact-type-card__title { color: var(--gold); }
.contact-type-card--green .contact-type-card__title { color: var(--green); }
.contact-type-card__sub   { font-size: 11px; color: var(--text-muted); }

.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrap__title, .contact-info__title {
  font-size: 16px; font-weight: bold; color: var(--navy);
  padding-bottom: 12px; border-bottom: 2px solid var(--navy);
  margin-bottom: 22px;
}
.contact-tel-box {
  background: #f0f5ff; border: 1px solid #c0d0ee;
  border-radius: 6px; padding: 24px; text-align: center; margin-bottom: 24px;
}
.contact-tel-box__label  { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.contact-tel-box__num    { font-size: 28px; font-weight: bold; color: var(--navy); letter-spacing: 2px; display: block; }
.contact-tel-box__hours  { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.contact-tel-box__closed { font-size: 12px; color: #c00; margin-top: 4px; }
.contact-info__subtitle  { font-size: 14px; font-weight: bold; color: var(--navy); margin-bottom: 12px; }
.contact-address { font-size: 12px; color: #555; line-height: 2.1; margin-top: 12px; }
.contact-form-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; text-align: center; }

.contact-flow { background: var(--gray-light); border-radius: 6px; padding: 16px; margin-top: 20px; }
.contact-flow__title { font-size: 13px; font-weight: bold; color: var(--navy); margin-bottom: 10px; }
.contact-flow__list { padding-left: 20px; list-style: decimal; font-size: 12px; color: #555; line-height: 2.2; }

/* Contact Form 7 スタイル上書き */
.wpcf7-form .wpcf7-form-control-wrap { display: block; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d0d8e8;
  border-radius: var(--radius);
  background: #f8f9fb;
  font-size: 13px;
  font-family: inherit;
  margin-top: 4px;
}
.wpcf7-form label { font-size: 13px; font-weight: bold; color: #333; }
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form .wpcf7-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 15px;
  font-weight: bold;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
}
.cf7-notice { background: #fff3cd; border: 1px solid #ffc107; padding: 16px; border-radius: var(--radius); font-size: 13px; }

/* ========== Single Article ========== */
.single-article__header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.single-article__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.single-article__title { font-size: 22px; font-weight: bold; color: var(--navy); line-height: 1.5; }
.single-article__body { font-size: 14px; line-height: 2; color: #444; }
.single-article__body p { margin-bottom: 16px; }
.single-article__body h2 { font-size: 20px; font-weight: bold; color: var(--navy); margin: 32px 0 12px; padding-left: 12px; border-left: 4px solid var(--gold); }
.single-article__footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ========== Pagination ========== */
.pagination { margin-top: 32px; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--text); }
.pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ========== Page Content ========== */
.page-content h2 { font-size: 22px; font-weight: bold; color: var(--navy); margin: 32px 0 12px; }
.page-content p  { font-size: 14px; line-height: 2; margin-bottom: 16px; color: #444; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content li { font-size: 14px; line-height: 2; }

/* ========== Sending Content ========== */
.sending-content .info-box { max-width: 680px; }
.sending-content .info-box h3 { font-size: 16px; font-weight: bold; color: var(--navy); margin-bottom: 12px; }
.sending-content .info-box p { font-size: 13px; line-height: 1.9; color: #444; }

/* ========== 規程ページ ========== */
.kitei-doc { max-width: 860px; margin: 0 auto; }
.kitei-intro { font-size: 15px; color: #555; margin-bottom: 32px; padding: 12px 16px; background: #f5f7fa; border-left: 4px solid var(--navy); }
.kitei-section { margin-bottom: 40px; }
.kitei-h2 { font-size: 17px; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--navy); padding-bottom: 8px; margin-bottom: 16px; }
.kitei-ol { padding-left: 1.5em; line-height: 2; font-size: 14px; color: #333; }
.kitei-ol li { margin-bottom: 12px; }
.kitei-ol--inner { padding-left: 1.5em; margin-top: 8px; }
.stat__num--text { font-size: 16px !important; line-height: 1.4; }
.about-greeting--no-photo { grid-template-columns: 1fr; }
.about-greeting__sig { margin-top: 24px; font-weight: 700; color: var(--navy); text-align: right; font-size: 15px; }
.kanri-fee-table { width: 100%; font-size: 13px; }
.kanri-fee-table th { background: var(--navy); color: #fff; padding: 10px 8px; font-size: 12px; }
.kanri-fee-table td { padding: 8px; vertical-align: middle; border: 1px solid #ddd; }
.kanri-fee-table .subtotal-row td { background: #f0f4fa; }
.kanri-fee-table .total-row td { background: var(--navy); color: #fff; font-size: 15px; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .flow-steps { flex-wrap: wrap; }
  .flow-step { min-width: calc(33.333% - 10px); border: 1px solid var(--border); margin-bottom: 4px; }
  .flow-step::after { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .occupation-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header__nav { display: none; }
  .header__nav.is-open { display: block; position: fixed; inset: 0; top: 72px; background: #fff; z-index: 200; overflow-y: auto; padding: 24px; }
  .header__nav.is-open .nav-menu { flex-direction: column; }
  .header__nav.is-open .nav-menu > li > a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); border-top: none; }
  .hamburger { display: flex; }
  .header__tel { display: none; }
  .hero__title { font-size: 22px; }
  .hero__badges { display: none; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); display: grid; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; }
  .flow-step { min-width: 100%; }
  .occupation-grid { grid-template-columns: repeat(2, 1fr); }
  .about-greeting { grid-template-columns: 1fr; }
  .system-overview { grid-template-columns: 1fr; }
  .visa-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-type-grid { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta__actions { flex-direction: column; }
  .mid-cta__inner { flex-direction: column; text-align: center; }
  .tokutei-banner__inner { flex-direction: column; text-align: center; }
  .compliance-band__inner { flex-direction: column; text-align: center; }
  .info-box__list { grid-template-columns: 1fr; }
  .sec__title { font-size: 20px; }
  .hero__content { padding: 40px 0; }
  .sec { padding: 40px 0; }
  .container { padding: 0 16px; }
  .sub-hero__title { font-size: 20px; }
}

@media (max-width: 480px) {
  .occupation-grid { grid-template-columns: repeat(2, 1fr); }
  .form-steps { display: none; }
  .hero__title { font-size: 20px; }
}
