/* =====================
   Common
===================== */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }

:root{
  --wrap: 1200px;
  --pad: 22px;
  --c-main: #1b3f9e;
  --c-text: #1d1d1f;
  --c-border: rgba(0,0,0,.08);
}

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

body{
  font-family: "Myriad Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--c-text);
  background: #fff;
  line-height: 1.6;
}

.wrap{
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}


/* =====================
   Header
===================== */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
}

/* Transparent header on initial view */
.header.is-transparent{
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Header after scrolling / inner pages */
.header.is-solid{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom-color: var(--c-border);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.head{
  height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1002;
  flex: 0 0 250px;
  width: 250px;
  height: 38px;
  line-height: 1;
  overflow: visible;
}

.brand img{
  display: block;
  width: 300px;
  /*width: 250px;
  height: 38px;*/
  object-fit: contain;
  object-position: left center;
  max-width: none;
}

/* Hide legacy text logo elements */
.brand .mark,
.brand .name{
  display: none;
}

/* ===== PC nav =====
   Use link padding instead of gap to keep the hero background strip continuous
*/
.nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1002;
}

.nav a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  color: var(--c-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  padding: 0 14px;
}

.nav a:hover{
  opacity: .72;
}

/* Navigation links without CTA button styling */
.nav .nav-cta{
  background: none;
  color: var(--c-main);
  border-radius: 0;
  height: 86px;
  padding: 0 14px;
}

/* Burger menu */
.burger{
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  border-radius: 10px;
  position: relative;
  z-index: 1002;
  cursor: pointer;
}

.burger span{
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--c-main);
}

.burger span:nth-child(1){ top: 13px; }
.burger span:nth-child(2){ top: 20px; }
.burger span:nth-child(3){ top: 27px; }

.overlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1001;
}


/* =====================
   Tablet
===================== */
@media (max-width: 1024px){
  :root{ --pad: 18px; }

  .head{
    height: 78px;
    gap: 14px;
  }

  .brand{
    flex-basis: 220px;
    width: 220px;
    height: 34px;
  }

  .brand img{
    width: 220px;
    height: 34px;
  }

  .nav a,
  .nav .nav-cta{
    height: 78px;
    font-size: 13px;
    padding: 0 10px;
  }
}


/* =====================
   Mobile
===================== */
@media (max-width: 768px){
  :root{ --pad: 16px; }

  .head{
    height: 72px;
    gap: 10px;
  }

  .brand{
    flex-basis: 185px;
    width: 185px;
    height: 30px;
  }

  .brand img{
    width: 185px;
    height: 30px;
  }

  .nav{
    display: none;
  }

  .burger{
    display: inline-block;
  }

  .header.is-open .overlay{
    display: block;
  }

  .header.is-open .nav{
    display: flex;
    position: fixed;
    top: 72px;
    right: 0;
    width: min(86vw, 340px);
    height: calc(100vh - 72px);
    background: rgba(255,255,255,.98);
    border-left: 1px solid rgba(0,0,0,.08);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow-y: auto;
    z-index: 1002;
    margin-left: 0;
  }

  .header.is-open .nav a{
    height: auto;
    padding: 12px 10px;
    border-radius: 4px;
    /*border: 1px solid #ebedf0;*/
    background: #f2f2f2;
    color: var(--c-main);
    justify-content: flex-start;
  }

  .header.is-open .nav .nav-cta{
    height: auto;
    padding: 12px 10px;
    background: rgba(27,63,158,.03);
    color: var(--c-main);
  }
}


/* =========================
   Certification Logos
========================= */
.cert-logos{
  background: #969696;
  padding: 18px 20px;
}

.cert-logos__inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
}

.cert-logos__item{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.cert-logos__item img{
  display: block;
  width: auto;
  height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px){
  .cert-logos{
    padding: 16px 18px;
  }

  .cert-logos__inner{
    gap: 90px;
  }

  .cert-logos__item{
    min-height: 34px;
  }

  .cert-logos__item img{
    height: 34px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .cert-logos{
    padding: 16px 16px;
  }

  .cert-logos__inner{
    flex-direction: column;
    gap: 12px;
  }

  .cert-logos__item{
    min-height: 30px;
  }

  .cert-logos__item img{
    height: 30px;
  }
}


/* =====================
   Footer
===================== */
.footer{
  background:#000;
  color:#fff;
  padding:56px 0 34px;
  overflow:hidden;
}

.foot{
  max-width:1160px;
}

.foot-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}

.foot-top{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}

.foot-logo{
  display:inline-flex;
  align-items:center;
  line-height:0;
  flex:0 0 auto;
}

.foot-logo img{
  display:block;
  width:auto;
  height:34px;
  max-width:none;
}

.footer .sub{
  color:rgba(255,255,255,.95);
  font-size:18px;
  line-height:1.35;
  font-weight:600;
}

.foot-sns{
  flex:0 0 auto;
  margin-left:auto;
}

.foot-sns a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  line-height:0;
}

.foot-sns img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

/* Footer columns */
.foot-cols{
  margin-top:52px;
  display:grid;
  grid-template-columns:minmax(280px,1.35fr) minmax(220px,1fr) minmax(220px,1fr) minmax(120px,.6fr);
  gap:34px 38px;
  align-items:start;
  min-width:0;
}

.footer .col{
  min-width:0;
}

.footer .ttl{
  margin:0 0 18px;
  color:#fff;
  font-size:22px;
  line-height:1.25;
  font-weight:700;
}

.footer .ttl.is-empty{
  margin:0 0 18px;
  font-size:22px;
  line-height:1.25;
  visibility:hidden;
}

.footer .col a{
  display:block;
  color:rgba(255,255,255,.92);
  font-size:15px;
  line-height:1.65;
  font-weight:500;

  /* Prevent abnormal word wrapping */
  white-space:normal;
  word-break:normal;
  overflow-wrap:break-word;
  line-break:auto;
}

.footer .col a + a{
  margin-top:8px;
}

.footer .col a:hover{
  opacity:.72;
}

.footer .col:nth-child(3) a{
  line-height:1.55;
}

.footer .col:nth-child(3) a + a{
  margin-top:10px;
}

.footer .col-policy{
  padding-top:2px;
}

.footer .copy{
  margin-top:62px;
  text-align:center;
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.4;
  font-weight:600;
}

/* Tablet */
@media (max-width:1100px){
  .footer{
    padding:48px 0 30px;
  }

  .foot-logo img{
    height:30px;
  }

  .footer .sub{
    font-size:16px;
  }

  .foot-cols{
    margin-top:40px;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:30px 24px;
  }

  .footer .col-policy{
    grid-column:3;
    padding-top:0;
  }

  .footer .ttl,
  .footer .ttl.is-empty{
    font-size:20px;
    margin-bottom:14px;
  }

  .footer .col a{
    font-size:14px;
  }

  .footer .copy{
    margin-top:46px;
  }
}

/* Mobile */
@media (max-width:768px){
  .footer{
    padding:36px 0 24px;
  }

  .foot-head{
    align-items:flex-start;
    gap:12px;
  }

  .foot-top{
    gap:8px;
    flex:1 1 auto;
    min-width:0;
  }

  .foot-logo img{
    height:24px;
    width:auto;
    max-width:180px;
  }

  .footer .sub{
    font-size:14px;
    line-height:1.35;
  }

  .foot-sns{
    margin-left:8px;
    flex:0 0 auto;
  }

  .foot-sns a{
    width:28px;
    height:28px;
  }

  .footer .foot-cols{
    margin-top:24px;
    display:grid;
    grid-template-columns:1fr !important;
    gap:18px;
    width:100%;
    min-width:0;
  }

  .footer .col{
    width:100%;
    min-width:0;
  }

  .footer .col-policy{
    grid-column:auto;
    padding-top:0;
  }

  .footer .ttl{
    margin:0 0 8px;
    font-size:18px;
    line-height:1.2;
  }

  .footer .ttl.is-empty{
    display:none;
  }

  .footer .col a{
    font-size:14px;
    line-height:1.45;
    margin:0;
    white-space:normal;
    word-break:keep-all;
    overflow-wrap:anywhere;
  }

  .footer .col a + a{
    margin-top:6px;
  }

  .footer .copy{
    margin-top:24px;
    font-size:13px;
  }
}


/* =====================
   Header Dropdown Menu Ver1.3
===================== */
.nav-drop{
  position: relative;
  display: flex;
  align-items: center;
  height: 86px;
  flex: 0 0 auto;
}

.nav-drop__head{
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-drop__head > a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  padding: 0 14px;
  color: var(--c-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-drop__toggle{
  display: none;
}


/* =====================
   PC Dropdown
===================== */
@media (min-width: 769px){
  .nav-drop__menu{
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    right: auto;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, minmax(42px, auto));
    grid-auto-columns: minmax(190px, 1fr);
    align-items: stretch;
    column-gap: 0;
    row-gap: 0;
    min-width: 240px;
    width: max-content;
    max-width: min(920px, calc(100vw - 48px));
    padding: 4px 0 4px 4px;
    overflow: hidden;

    background-color: #ffffff !important;
    background-image: none !important;
    border: 1px solid rgba(10, 28, 68, .10);
    box-shadow:
      inset 4px 0 0 var(--c-main),
      0 18px 40px rgba(10, 28, 68, .10);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    z-index: 1005;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-drop__menu::before,
  .nav-drop__menu::after{
    content: none !important;
    display: none !important;
  }

  .nav .nav-drop__menu > a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 190px;
    height: 42px;
    min-height: 0;
    padding: 0 16px 0 18px;
    background: #ffffff !important;
    color: var(--c-main);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
    white-space: nowrap;
    border-top: 0;
    border-left: 1px solid rgba(10, 28, 68, .06);
  }

  .nav-drop__menu > a:nth-child(-n + 4){
    border-left: 0;
  }

  .nav-drop__menu > a:hover{
    background: #f6f8fc !important;
    opacity: 1;
  }

  .nav-drop:hover .nav-drop__menu,
  .nav-drop:focus-within .nav-drop__menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* Wider dropdown for Products */
  #nav-drop-products{
    grid-auto-columns: minmax(210px, 1fr);
    min-width: 280px;
    max-width: min(1040px, calc(100vw - 48px));
    grid-template-rows: repeat(4, minmax(42px, auto));
  }

  #nav-drop-products > a{
    min-width: 210px;
  }

  /* Narrower dropdown for Our Capabilities */
  #nav-drop-custom-design{
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    min-width: 200px;
    max-width: 240px;
    padding: 4px 0 4px 4px;
  }

  #nav-drop-custom-design > a{
    min-width: 180px;
  }
}


/* =====================
   Tablet Adjustment
===================== */
@media (max-width: 1024px){
  .nav-drop{
    height: 78px;
  }

  .nav-drop__head > a{
    height: 78px;
    padding: 0 10px;
    font-size: 13px;
  }
}


/* =====================
   Mobile Dropdown Inside Slide Menu
===================== */
@media (max-width: 768px){
  .nav-drop{
    display: block;
    width: 100%;
    height: auto;
  }

  .nav-drop__head{
    display: grid;
    grid-template-columns: minmax(0,1fr) 42px;
    align-items: stretch;
    height: auto;
    column-gap: 6px;
  }

  .header.is-open .nav .nav-drop__head > a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 44px;
    padding: 12px 12px;
    border-radius: 0;
    background: #fff;
    color: var(--c-main);
    border: 1px solid rgba(10, 28, 68, .08);
  }

  .nav-drop__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(10, 28, 68, .08);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
  }

  .nav-drop__toggle span{
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--c-main);
    border-bottom: 2px solid var(--c-main);
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-top: -3px;
  }

  .nav-drop.is-open .nav-drop__toggle span{
    transform: rotate(225deg);
    margin-top: 3px;
  }

  .header.is-open .nav .nav-drop__menu{
    position: static;
    top: auto;
    left: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 0;
    display: none;
    background: #fff;
    border: 1px solid rgba(10, 28, 68, .08);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .header.is-open .nav .nav-drop__menu::before,
  .header.is-open .nav .nav-drop__menu::after{
    content: none !important;
    display: none !important;
  }

  .header.is-open .nav .nav-drop.is-open .nav-drop__menu,
  .header.is-open .nav .nav-drop__menu.is-open{
    display: block;
  }

  .header.is-open .nav .nav-drop__menu > a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 11px 14px 11px 18px;
    background: #fff;
    color: var(--c-main);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    white-space: normal;
    border-top: 1px solid rgba(10, 28, 68, .06);
    border-left: 0;
    border-radius: 0;
  }

  .header.is-open .nav .nav-drop__menu > a:first-child{
    border-top: 0;
  }
}


/* =========================
   Contact Embed
========================= */
.contact-embed{
  padding: 0px 20px 60px;
  background-color: #dfdfdf;
}

.contact-embed__inner{
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
}

.contact-embed__body{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Iframe embed */
.contact-embed iframe{
  display: block;
  width: 100%;
  border: 0;
}

/* Prevent width issues with embedded form services */
.contact-embed form{
  width: 100%;
}

.contact-embed .hs-form,
.contact-embed .hubspot-form,
.contact-embed .jotform-form,
.contact-embed .zf-templateWrapper{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
}

@media (max-width: 1100px){
  .contact-embed{
    padding: 88px 18px 88px;
  }
}

@media (max-width: 768px){
  .contact-embed{
    padding: 58px 16px 58px;
  }
}


/* =========================
   Contact Page
========================= */
body.contact-page {
  background: #dfdfdf;
}

.contact-page-main {
  background: #dfdfdf;
  min-height: 100vh;
}

.contact-page .contact-section {
  background: transparent;
}


/* =========================
   Contact Form
========================= */
.contact-section {
  background: transparent;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.contact-inner {
  width: min(100% - 2.5rem, 61.25rem);
  margin: 0 auto;
}

.contact-title {
  margin: 0 0 1.125rem;
  color: #000;
  font-size: clamp(2.25rem, 4.2vw, 3.375rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.contact-lead {
  margin: 0 0 3rem;
  color: #000;
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  line-height: 1.8;
  font-weight: 400;
}

.contact-form {
  width: min(100%, 47.5rem);
}

.form-error-text {
  margin: 0 0 1.25rem 4.875rem;
  color: #132a74;
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  line-height: 1.5;
  font-weight: 800;
}

.form-field {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  align-items: center;
  min-height: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.form-field label {
  color: #000;
  font-size: clamp(1rem, 1.7vw, 1.1875rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.form-field label span {
  margin-left: 0.0625rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 0;
  box-sizing: border-box;
  appearance: none;
}

.form-field textarea {
  min-height: 5rem;
  resize: vertical;
}

.h-captcha {
  margin-top: 1.75rem;
}

.contact-submit {
  margin-top: 1.75rem;
  min-width: 8.125rem;
  padding: 0.75rem 1.75rem;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:hover {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 3rem 0 3.5rem;
  }

  .contact-inner {
    width: min(100% - 2rem, 61.25rem);
  }

  .contact-title {
    font-size: clamp(2rem, 9vw, 2.4rem);
  }

  .contact-lead {
    margin-bottom: 2.125rem;
    font-size: 0.8125rem;
  }

  .form-error-text {
    margin-left: 0;
    font-size: 0.875rem;
  }

  .form-field {
    display: block;
    min-height: auto;
    padding: 0.75rem 0 0.375rem;
  }

  .form-field label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 1rem;
    padding: 0.375rem 0;
  }
}


/* =====================
   Products Mega Menu
===================== */
@media (min-width: 769px){
  #nav-drop-products{
    display: grid;

    grid-template-columns: repeat(4, minmax(210px, 1fr));
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;

    width: max-content;
    min-width: 920px;
    max-width: min(1040px, calc(100vw - 48px));

    padding: 18px 4px 20px;

    align-items: stretch;
  }

  #nav-drop-products .nav-product-group{
    min-width: 0;

    padding: 0 18px;

    background: #fff;

    border-left: 0;
  }

  #nav-drop-products .nav-product-group__title{
    display: flex;
    align-items: flex-start;

    min-height: 0;

    padding: 0 0 8px;

    background: #fff;
    color: var(--c-main);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    border-bottom: 1px solid rgba(10,28,68,.16);
  }

  .nav #nav-drop-products .nav-product-group > a{
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 36px;

    padding: 7px 0;

    background: #fff !important;
    color: var(--c-main);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .01em;

    white-space: normal;

    border: 0;
  }

  .nav #nav-drop-products .nav-product-group > a:first-of-type{
    padding-top: 7px;
  }

  .nav #nav-drop-products .nav-product-group > a:hover{
    background: #fff !important;
    opacity: .72;
  }
}


/* =====================
   Products Mega Menu Mobile
===================== */
@media (max-width: 768px){
  .header.is-open .nav #nav-drop-products{
    padding: 0;
  }

  .header.is-open .nav #nav-drop-products .nav-product-group{
    width: 100%;

    padding: 0 14px;

    background: #fff;
  }

  .header.is-open .nav #nav-drop-products .nav-product-group + .nav-product-group{
    margin-top: 12px;
    border-top: 0;
  }

  .header.is-open .nav #nav-drop-products .nav-product-group__title{
    display: block;

    padding: 10px 0 7px;

    background: #fff;
    color: var(--c-main);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    border-bottom: 1px solid rgba(10,28,68,.16);
  }

  .header.is-open .nav #nav-drop-products .nav-product-group > a{
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    height: auto;
    min-height: 38px;

    padding: 8px 4px;

    background: #fff;
    color: var(--c-main);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;

    white-space: normal;

    border: 0;
    border-radius: 0;
  }

  .header.is-open .nav #nav-drop-products .nav-product-group > a:hover{
    background: #fff;
    opacity: .72;
  }
}


/*----------------
Customize
----------------------------------*/
/*20260818*/
span.h2-small-txt {
    font-size: 1.7rem;
    font-weight: normal;
    margin: 0 1rem 0.5rem;
    letter-spacing: 0.03rem;
    color: #d3d3d3;
}

/* Footer title links */
.footer .col a.ttl {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 1100px) {
  .footer .col a.ttl {
    margin-bottom: 14px;
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer .col a.ttl {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
  }
}




/* ==================================================
   Contact Form - Font Size Normalization
================================================== */

.contact-lead,
.form-error-text{
  font-size: 18px !important;
  font-weight: normal !important;
}


