@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover {
  color: #00489d;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 767px) {
  .container {
    padding-inline: 16px;
  }
}

.container--inner {
  max-width: 1080px;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding-block: 96px;
}
@media (max-width: 1023px) {
  .section {
    padding-block: 64px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-block: 40px;
  }
}

.section-header {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-eyebrow {
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00489d;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  letter-spacing: -0.01em;
}
@media (max-width: 1023px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 22px;
  }
}

.section-lead {
  margin-top: 16px;
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .section-lead {
    font-size: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn__icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.btn:hover .btn__icon {
  transform: translateX(4px);
}

.btn--primary {
  background-color: #00489d;
  color: #ffffff;
  border: 2px solid #00489d;
}
.btn--primary:hover {
  background-color: #003574;
  border-color: #003574;
  color: #ffffff;
}

.btn--outline {
  background-color: transparent;
  color: #00489d;
  border: 2px solid #00489d;
}
.btn--outline:hover {
  background-color: #00489d;
  color: #ffffff;
}

.btn--white {
  background-color: #ffffff;
  color: #00489d;
  border: 2px solid #ffffff;
}
.btn--white:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 12px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #00489d;
  white-space: nowrap;
  transition: gap 0.3s ease, color 0.3s ease;
}
.link-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}
.link-arrow:hover {
  gap: 8px;
  color: #00489d;
}
.link-arrow:hover::after {
  transform: translateX(4px);
}
.link-arrow--reverse {
  flex-direction: row-reverse;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .page-main {
    padding-top: 60px;
  }
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-note {
  font-size: 0.9em;
  color: #666666;
}
.text-note--sm {
  font-size: 0.875em;
}

.table-scroll {
  overflow-x: auto;
}

.mt-56 {
  margin-top: 56px;
}

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.map-embed {
  border: 0;
}

.error-content {
  text-align: center;
  padding: 64px 0 96px;
}
.error-content__lead {
  font-size: 18px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 40px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay-1 {
  transition-delay: 0.1s;
}
.fade-in--delay-15 {
  transition-delay: 0.15s;
}
.fade-in--delay-2 {
  transition-delay: 0.2s;
}
.fade-in--delay-3 {
  transition-delay: 0.3s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #dde1e8;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 1023px) {
  .header-inner {
    height: 60px;
    padding-inline: 16px;
  }
}

.header-logo {
  flex-shrink: 0;
}
.header-logo a {
  display: block;
}
.header-logo a:hover {
  opacity: 0.85;
}
.header-logo img {
  height: 44px;
  width: auto;
}
@media (max-width: 1023px) {
  .header-logo img {
    height: 30px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .header-right {
    gap: 8px;
  }
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  background-color: #00489d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.header-contact-btn:hover {
  background-color: #003574;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .header-contact-btn {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 110;
}
@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .global-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    overflow-y: auto;
    z-index: 95;
    padding: 24px;
  }
  .global-nav.is-open {
    display: block;
  }
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 1023px) {
  .global-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.nav-item {
  position: relative;
}
.nav-item:hover > .nav-link {
  color: #00489d;
}
.nav-item:hover > .nav-link::after {
  width: 100%;
}
.nav-item:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .nav-item {
    border-bottom: 1px solid #dde1e8;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
  padding-inline: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #00489d;
  transition: width 0.3s ease;
}
.nav-link__arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.3s ease;
}
.nav-item:hover .nav-link__arrow {
  transform: rotate(180deg);
}
@media (max-width: 1023px) {
  .nav-link {
    height: auto;
    padding: 16px 0;
    font-size: 16px;
  }
  .nav-link::after {
    display: none;
  }
}

.mega-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background-color: #ffffff;
  border-top: 3px solid #00489d;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 90;
}
.mega-menu.mega-menu--left {
  left: 0;
  transform: translateY(-8px);
}
@media (max-width: 1023px) {
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #00489d;
    margin-left: 16px;
    padding-block: 8px;
    display: none;
  }
  .mega-menu.is-open {
    display: block;
  }
}

.mega-menu__list {
  padding: 8px 0;
}

.mega-menu__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  color: #333333;
  transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.3s ease;
  border-left: 3px solid transparent;
}
.mega-menu__item a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #00489d;
  border-right: 2px solid #00489d;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.mega-menu__item a:hover {
  background-color: #f5f7fa;
  color: #00489d;
  padding-left: 30px;
  border-left-color: #00489d;
}
.mega-menu__item a:hover::before {
  transform: rotate(45deg) translateX(2px);
}

.nav-item__toggle {
  display: none;
  padding: 4px 8px;
  margin-left: auto;
  color: #999999;
  font-size: 18px;
  transition: transform 0.3s ease;
}
@media (max-width: 1023px) {
  .nav-item__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.nav-item__toggle.is-active {
  transform: rotate(180deg);
}

.nav-link-sp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .nav-link-sp-row {
    display: contents;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 90;
}
.nav-overlay.is-active {
  display: block;
}

.site-footer {
  background-color: #0d1c2e;
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  padding: 96px 0 64px;
}
@media (max-width: 767px) {
  .footer-main {
    padding: 64px 0 40px;
  }
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 1023px) {
  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .footer-main__inner {
    padding-inline: 16px;
  }
}

.footer-brand .footer-logo img {
  height: 36px;
  width: auto;
  max-width: none;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand__group {
  margin-top: 16px;
}
.footer-brand__group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.footer-brand__group a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-brand__group a .ext-icon {
  font-size: 12px;
  margin-left: 2px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  background-color: #00489d;
  color: #ffffff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.6fr;
  gap: 40px;
}
@media (min-width: 1280px) {
  .footer-nav {
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav__group--policy {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .footer-nav__group--policy {
    grid-column: span 1;
  }
}
.footer-nav__group--policy h3 {
  letter-spacing: 0.06em;
  text-transform: none;
}

.footer-nav__group h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nav__list li + li {
  margin-top: 8px;
}
.footer-nav__list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
}
.footer-nav__list a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 767px) {
  .footer-bottom__inner {
    flex-direction: column;
    gap: 8px;
    padding-inline: 16px;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media (max-width: 767px) {
  .footer-legal {
    justify-content: center;
  }
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .footer-legal {
    gap: 16px;
  }
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero {
  background: linear-gradient(135deg, #00489d 0%, #002551 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hero {
    padding: 48px 0 40px;
  }
}

.page-hero__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 767px) {
  .page-hero__inner {
    padding-inline: 16px;
  }
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.page-hero__breadcrumb a,
.page-hero__breadcrumb span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.page-hero__breadcrumb a:hover {
  color: #ffffff;
}
.page-hero__breadcrumb .sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero__en {
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.page-hero__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-subnav {
  position: sticky;
  top: 80px;
  z-index: 80;
  background-color: #ffffff;
  border-bottom: 1px solid #dde1e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .page-subnav {
    top: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.page-subnav__list {
  display: flex;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 767px) {
  .page-subnav__list {
    padding-inline: 16px;
    white-space: nowrap;
  }
}

.page-subnav__item a {
  display: flex;
  align-items: center;
  height: 52px;
  padding-inline: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.page-subnav__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #00489d;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.page-subnav__item a:hover, .page-subnav__item a.is-active {
  color: #00489d;
}
.page-subnav__item a:hover::after, .page-subnav__item a.is-active::after {
  transform: scaleX(1);
}
@media (max-width: 767px) {
  .page-subnav__item a {
    padding-inline: 14px;
    font-size: 12px;
  }
}

.page-content {
  padding-block: 96px;
}
@media (max-width: 1023px) {
  .page-content {
    padding-block: 64px;
  }
}
@media (max-width: 767px) {
  .page-content {
    padding-block: 40px;
  }
}

.company-section {
  padding-block: 96px;
}
.company-section + .company-section {
  border-top: 1px solid #dde1e8;
}
@media (max-width: 767px) {
  .company-section {
    padding-block: 64px;
  }
}

.company-section__header {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .company-section__header {
    margin-bottom: 40px;
  }
}

.company-section__title {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  padding-left: 16px;
  border-left: 4px solid #00489d;
}
@media (max-width: 767px) {
  .company-section__title {
    font-size: 22px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid #dde1e8;
}
.company-table tr:first-child {
  border-top: 1px solid #dde1e8;
}
.company-table th {
  width: 220px;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  text-align: left;
  vertical-align: top;
  background-color: #f5f7fa;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .company-table th {
    width: 140px;
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .company-table th {
    display: block;
    width: 100%;
    padding: 14px 16px 4px;
    background-color: transparent;
    font-size: 12px;
    color: #00489d;
    border-bottom: none;
  }
}
.company-table td {
  padding: 20px 24px;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  vertical-align: top;
}
@media (max-width: 1023px) {
  .company-table td {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .company-table td {
    display: block;
    width: 100%;
    padding: 4px 16px 14px;
  }
}

.officers-table {
  width: 100%;
  border-collapse: collapse;
}
.officers-table thead tr {
  background-color: #00489d;
  color: #ffffff;
}
.officers-table thead th {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 767px) {
  .officers-table thead th {
    padding: 12px 16px;
    font-size: 12px;
  }
}
.officers-table tbody tr {
  border-bottom: 1px solid #dde1e8;
  transition: background-color 0.15s ease;
}
.officers-table tbody tr:hover {
  background-color: #f5f7fa;
}
.officers-table tbody td {
  padding: 18px 24px;
  font-size: 16px;
  color: #333333;
  vertical-align: middle;
}
.officers-table tbody td:first-child {
  color: #666666;
  font-size: 14px;
  width: 240px;
}
@media (max-width: 1023px) {
  .officers-table tbody td:first-child {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .officers-table tbody td:first-child {
    width: 120px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .officers-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
  }
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.office-card {
  border: 1px solid #dde1e8;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.office-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.office-card--hq {
  grid-column: span 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .office-card--hq {
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .office-card--hq {
    grid-column: span 1;
  }
}

.office-card__header {
  background-color: #00489d;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .office-card__header {
    padding: 14px 16px;
  }
}

.office-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.office-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.office-card__body {
  padding: 24px;
}
@media (max-width: 767px) {
  .office-card__body {
    padding: 16px;
  }
}

.office-card__inner {
  display: flex;
  gap: 40px;
}
@media (max-width: 1023px) {
  .office-card--hq .office-card__inner {
    flex-direction: column;
    gap: 24px;
  }
}

.office-card__map {
  flex: 1 0 0;
  min-height: 240px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f0f2f5;
}
.office-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  border: none;
}

.office-card__info {
  flex: 1 0 0;
}

.office-card__address {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 24px;
}
.office-card__address .label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #00489d;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.office-card__access {
  font-size: 14px;
  color: #666666;
  line-height: 1.9;
}
.office-card__access .label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}
.office-card__access .station {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.office-card__access .station::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00a3ca;
  position: relative;
  top: -1px;
}

.office-card__map--single {
  height: 200px;
  min-height: 200px;
  margin-bottom: 24px;
}
.office-card__map--single iframe {
  min-height: 200px;
}

.cert-marks {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .cert-marks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}

.cert-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cert-mark__img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .cert-mark__img {
    width: 120px;
    height: 120px;
  }
}

.cert-mark__label {
  font-size: 12px;
  color: #666666;
  text-align: center;
  font-weight: 500;
}

.cert-descriptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cert-descriptions {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cert-descriptions {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cert-desc {
  background: #f5f7fa;
  border-radius: 4px;
  padding: 28px 28px 32px;
  border-top: 3px solid #00489d;
}

.cert-desc__heading {
  font-size: 16px;
  font-weight: 700;
  color: #00489d;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cert-desc__heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00489d;
  border-radius: 50%;
  flex-shrink: 0;
}

.cert-desc__text {
  font-size: 14px;
  color: #333333;
  line-height: 1.9;
}

.cert-initiative {
  border: 1px solid #dde1e8;
  border-radius: 4px;
  padding: 32px 36px;
}
@media (max-width: 767px) {
  .cert-initiative {
    padding: 24px 20px;
  }
}

.cert-initiative__heading {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dde1e8;
}

.cert-initiative__text {
  font-size: 14px;
  color: #333333;
  line-height: 2;
}
.cert-initiative__text p + p {
  margin-top: 8px;
}

.contact-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .contact-lead {
    font-size: 16px;
    text-align: left;
    margin-bottom: 40px;
  }
}

.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto 96px;
}
.contact-form-wrap iframe {
  width: 100% !important;
  border: none;
}
@media (max-width: 767px) {
  .contact-form-wrap {
    margin-bottom: 64px;
  }
}

/*# sourceMappingURL=contact.css.map */
