/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 32px;
  --column-width-multiplier: 8.333;
}

@media (max-width: 1099px) {
  :root {
    --column-gap: 24px;
  }
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.8;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

#main-content {
  padding-top: 118px;
  margin-bottom: 60px;
}

@media (max-width: 1099px) {
  #main-content {
    padding-top: 66px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  #main-content {
    margin-bottom: 20px;
  }
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 40px;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Headings */

h1 {
  margin: 0;
  line-height: 1.5;
}
h2 {
  margin: 120px 0 40px;
  line-height: 1.5;
}
h3 {
  margin: 65px 0 25px;
  line-height: 1.5;
}
h4 {
  margin: 55px 0 20px;
  line-height: 1.5;
}
h5,h6 {
  margin: 40px 0 25px;
  line-height: 1.5;
}

@media (max-width: 1099px) {
  h1 {
    font-size: 1.5rem!important;
  }
  h2 {
    font-size: 1.5rem!important;
  }
  h3 {
    font-size: 1.25rem!important;
  }
  h4 {
    font-size: 1.125rem!important;
  }
  h5,h6 {
    font-size: 1rem!important;
  }
}

@media (max-width: 767px) {
  h2 {
    margin: 77px 0 40px;
  }
  h3 {
    margin: 40px 0 15px;
  }
  h4 {
    margin: 30px 0 10px;
  }
  h5,h6 {
    margin: 32px 0 20px;
  }
}

.entry-body > *:first-child {
  margin-top: 0;
}

.entry-body h2 {
  padding-top: 38px;
  position: relative;
}
.entry-body h2::before {
  position: absolute;
  content: "";
  width: 66px;
  height: 38px;
  top: 0;
  left: -33px;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_ttl-green.svg) no-repeat 0 0;
  background-size: cover;
}
.entry-body h3 {
  background-color: rgba(135,190,96,.2);
  padding: 15px;
}
.entry-body h4 {
  border-bottom: 2px solid #87BE60;
  padding-bottom: 15px;
}

.entry-body h5 {
  padding-left: 25px;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_ttl05.svg) no-repeat 0 9px;
  background-size: 16.3px 9.41px;
}

@media (max-width: 1099px) {

  .entry-body h2 {
    padding-top: 18.77px;
  }

  .entry-body h2::before {
    width: 31.41px;
    height: 18.77px;
    left: -15.705px;
  }

  .entry-body h3 {
    padding: 12px 15px;
  }

  .entry-body h5 {
    padding-left: 20px;
    background-position: 0 7px;
    background-size: 19.43px 11.77px;
  }

  .entry-body p {
    font-size: .875rem;
  }
}

.entry-body a {
  color: #125590;
}

.entry-body a:hover {
  text-decoration: none;
  color: #125590;
}

/* Lists */

ul,
ol {
  margin: 0 0 40px;
  line-height: 1.8;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.entry-body ul {
  list-style: none!important;
  padding: 0;
}

.entry-body ul li {
  padding-left: 20px;
  position: relative;
}

.entry-body ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #125590;
  left: 0;
  top: 10px;
}

.entry-body ol {
  padding: 0 0 0 20px;
}

@media (max-width: 1099px) {
  .entry-body ul li,
  .entry-body ol li {
    font-size: .875rem;
  }

  .entry-body ul li::before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
}


/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
  max-width: 100%;
  display: block;
}


/* other */

.pc_none {
  display: none;
}

@media screen and (max-width: 1099px) {
  .pc_none {
    display: block;
  }
}

.sp_br {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_br {
    display: block;
  }
}

@media screen and (max-width: 1099px) {
  .tb_none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #125590;
  border-color: #125590;
  color: #FFFFFF;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.btn-cta {
  color: #fff !important;
  display: inline-block;
  text-decoration: none;
  background-color: #125590;
  font-size: 16px;
  font-weight: bold;
  padding: 24px 32px;
  line-height: 1;
  transition: 0.5s;
  text-align: center;
  min-width: 160px;
}

.btn-cta:hover {
  opacity: 0.75;
  font-weight: bold;
}

.btn-cta span {
  display: inline-block;
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/icon/ico_angle_right_white.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding: 0 32px 0 0;
}

.btn-blue {
  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 22px 32px;
  border: 1px solid #C0D1E0;
  margin-bottom: 20px;
  color: #125590;
  background-color: #ffffff;
  line-height: 1.625;
  width: fit-content;
}

.btn-blue span {
  display: block;
  padding-right: 30px;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/arrow-blue.svg) no-repeat right center;
  background-size: 16px 10px;
}

.btn-blue .sub {
  font-size: .875rem;
  display: block;
  font-style: normal;
  font-weight: normal;
}

.btn-blue:hover {
  color: #125590;
  font-weight: bold;
  border-color: #125590;
}

.btn-blue {
  color: #ffffff !important;
  background-color: #125590;
  border-color: #125590;
}

.btn-blue span {
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_blank-white.svg);
  background-size: 14px 14px;
}

.btn-blue:hover {
  color: #ffffff;
  background-color: #1D2157;
}

@media screen and (max-width:1099px) {
  .btn-blue {
    font-size: .875rem;
    min-width: 150px!important;
    padding: 14px 20px;
  }
  .btn .sub {
    font-size: .75rem;
  }
}

.btn-blue02 {
  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 22px 32px;
  border: 1px solid #C0D1E0;
  margin-bottom: 20px;
  line-height: 1.625;
  width: fit-content;
  text-align: center;
  font-size: 1.25rem;
  min-width: 436px!important;
  line-height: 1.3;
  padding: 25px 32px;
  color: #ffffff !important;
  background-color: #125590;
  border-color: #125590;
}

.btn-blue02 .sub {
  font-size: .875rem;
  display: block;
  font-style: normal;
  font-weight: normal;
}

.btn-blue02 span {
  display: block;
  padding-right: 30px;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_blank-white.svg) no-repeat right center;
  background-size: 14px 14px;
  padding-left: 30px;
}

.btn-blue02:hover {
  color: #ffffff;
  background-color: #1D2157;
  font-weight: bold;
  border-color: #125590;
}

@media screen and (max-width:1099px) {
  .btn-blue02 {
    font-size: 1.125rem;
    min-width: 287px!important;
    padding: 18px 20px;
  }
}
@media screen and (max-width:767px) {
  .btn-blue02 {
    min-width: auto;
    width: calc(100vw - 90px);
  }
}
/* Fields */

.hs-form-field {
  margin-bottom: 20px;
}

/* Labels */

form label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 1099px) {
  form label {
    font-size: .875rem;
  }
}

/* Form Title */
.form-title {
  display: none;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #B4B4B4;
}

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 15px 10px;
  width: 100%;
  border: 1px solid #C7C7C7!important;
  border-radius: 0!important;
}

form textarea {
  resize: vertical;
  height: 188px;
}

form fieldset {
  max-width: 100% !important;
}

input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
select:focus,
textarea:focus  {
  border-color: #125590!important;
  outline: 0;
}

form .form-columns-1 input[type=text],
form .form-columns-1 input[type=search],
form .form-columns-1 input[type=email],
form .form-columns-1 input[type=password],
form .form-columns-1 input[type=tel],
form .form-columns-1 input[type=number],
form .form-columns-1 input[type=file],
form .form-columns-1 select,
form .form-columns-1 textarea { 
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  form .form-columns-2 input[type=text],
  form .form-columns-2 input[type=search],
  form .form-columns-2 input[type=email],
  form .form-columns-2 input[type=password],
  form .form-columns-2 input[type=tel],
  form .form-columns-2 input[type=number],
  form .form-columns-2 input[type=file],
  form .form-columns-2 select,
  form .form-columns-2 textarea { 
    width: 100% !important;
  }
}

form select {
  -webkit-appearance: none;
  appearance: none;
  padding: 15px 40px 15px 10px;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/arrow_down.svg) no-repeat right 20px center;
  background-size: 10px 8px;
}


/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0 0 5px;
  padding-left: 0;
}

form .inputs-list > li::before {
  display: none;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
  font-weight: 400!important;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 10px;
  accent-color: #125590;
  width: 20px!important;
  height: 20px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1rem;
  margin: 0 0 10px;
}

@media screen and (max-width: 1099px) {
  form .hs-richtext,
  form .hs-richtext p {
    font-size: .875rem;
  }
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  font-size: 0;
  margin-right: 0;
  color: #E03F0F;
}

.hs-form-required::after {
  content: "必須";
  font-size: 12px;
  font-weight: bold;
  background-color: #FFFFFF;
  border: 1px solid #E03F0F;
  color: #E03F0F;
  text-align: center;
  padding: 0 10px 1px;
  margin-left: 10px;
  letter-spacing: .2em;
}

.hs-input.invalid.error {
  border-color: #E03F0F!important;
}

.hs-error-msg {
  color: #E03F0F;
  font-size: .875rem;
  margin-top: 5px;
  font-weight: 400!important;
}

.hs-error-msgs label {
  color: #E03F0F!important;
}


/* legal-consent-container */
.legal-consent-container .hs-richtext p,
.legal-consent-container .hs-richtext a {
  font-weight: bold;
}

.legal-consent-container .hs-form-booleancheckbox-display {
  display: flex;
  align-items: center;
}
.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin-left: 0!important;
}

/* Submit button */

.hs_submit {
  text-align: center;
}

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

form .hs-button {
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/arrow-white.svg) no-repeat right 20px center #125590;
  background-size: 16px 10px;
  width: 100%;
  max-width: 330px!important;
  height: 72px;
  color: #FFFFFF;
  border: 1px solid #125590;
  font-weight: bold;
  margin: 40px auto;
  padding: 0 30px;
  text-align: center;
}

form .hs-button:hover {
  background-color: #1D2157;
}

@media screen and (max-width: 1099px) {
  form .hs-button {
    max-width: 255px!important;
    height: 52px;
    font-size: .875rem;
    background-position: right 14px center;
    padding: 0 24px;
    margin: 40px auto 20px;
  }
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 40px;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header {
  position: fixed;
  height: 118px;
  width: 100%;
  box-shadow: 0 0 20px 0 rgba(18, 85, 144, 0.15);
  z-index: 100;
}

@media (max-width: 1099px) {
  .header {
    height: 66px;
  }
}

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-width: 100%!important;
  padding-left: 35px;
}
@media (max-width: 1099px) {
  .header__container {
    padding: 0 24px;
    align-items: center;
  }
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header__row-2 {
  padding-top: 15px;
}

.header__row-1 .menu__item:nth-child(3) {
  padding-left: 24px;
  position: relative;
}

.header__row-1 .menu__item:nth-child(3)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #C7C7C7;
}

.header__row-1 .menu__item .menu__link {
  font-size: .875rem;
  font-weight: 500;
  margin-right: 24px;
  padding: 0;
}

.header__row-1 .menu__item .menu__link:hover {
  font-weight: 500;
}

.header__row-1 .menu__item:last-child .menu__link {
  margin-right: 0;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .21rem;
  color: #ffffff;
  width: 178px;
  padding: 9px 0;
  text-align: center;
  background: linear-gradient(#125590, #1D2157);
}

.header__row-1 .menu__item .menu__link::before,
.header__row-1 .menu__item .menu__link::after {
  display: none;
}

.header__row-1 .menu__item:last-child .menu__link:hover {
  background: #1D2157;
  color: #ffffff!important;
}

.header__row-2 .menu--desktop .menu__item:nth-child(2) .menu__submenu .midashi {
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_ttl-blue.svg);
}

.header__row-2 .menu--desktop .menu__item:nth-child(2) .menu__submenu .midashi p span {
  color: #2973A7;
}

.header__row-2 .menu--desktop .menu__item:nth-child(3) .menu__submenu .midashi {
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_ttl-green.svg);
}

.header__row-2 .menu--desktop .menu__item:nth-child(3) .menu__submenu .midashi p span {
  color: #87BE60;
}

.header__row-2 .menu--desktop .menu__item:nth-child(4) .menu__submenu .midashi {
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_ttl-yellow.svg);
}

.header__row-2 .menu--desktop .menu__item:nth-child(4) .menu__submenu .midashi p span {
  color: #BEE00F;
}

@media (max-width: 1259px) {
  .header__row-2 .menu__link {
    padding: 0 16px 30px;
  }

  .header__row-2 .menu__item:last-child .menu__link {
    padding-right: 32px;
  }
}

@media (max-width: 1099px) {
  .header__row-1 {
    display: none;
  }

  .header__row-2 {
    padding-top: 0;
  }

}



/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  width: 202px;
  overflow: hidden;
}

@media (max-width: 1099px) {
  .header__logo {
    width: 133px;
  }
}

.header__logo img {
  max-width: 100%;
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1099px) {
  .header__navigation {
    display: none;
    width: 100%;
    height: calc(100vh - 66px);
    overflow: scroll;
  }

  .header__navigation.open {
    background-color: #F0F3F5;
    display: block;
    left: 0;
    height: calc(100vh - 66px);
    position: absolute;
    right: 0;
    top: 66px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    height: 48px;
    width: 48px;
  }

  .header__navigation--toggle.hide {
    display: none;
  }
/*
  .header__navigation--toggle.open {
    display: block;
  }
*/
  .header__navigation--toggle {
    background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_menu.svg);
  }

  .header__close--toggle {
    background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_close.svg);
    display: none;
  }

  .header__close--toggle.show {
    display: block;
  }
}

.header__search {
  width: 200px;
  position: absolute;
  top: 12px;
  right: 202px;
}

.header__navigation02 .menu__item--depth-1:last-child {
  margin: 0 0 0 224px;
}

.search-box button {
  width: 32px;
  padding: 0;
  border-width: 0 !important;
}

.search-box form input[type=search] {
  width: calc(100% - 32px);
  height: 32px;
  background-color: #DBE7EF;
  box-sizing: border-box;
  border-width: 0 !important;
}

.search-box form input[type=search]::placeholder {
  color: #DBE7EF;
}

.hs-search-field__suggestions-container {
  display: none;
}

.search-box .hs-search-field__button svg {
  filter: invert(1) brightness(2);
  height: 13px;
}

@media screen and (max-width: 1099px) {
  body.open { 
    height: 100%; overflow: hidden;
  }
  .header__search {
    display: none;
  }
  .header__navigation02 .menu__item--depth-1:last-child {
    margin: 0;
  }
}
.page-top { 
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 0;
  opacity:0;
  visibility: hidden;
  z-index: 10;
}

.page-top.active {
  opacity:1;
  visibility: visible;
}

.page-top a {
  text-indent: -99999px;
  width: 105px;
  height: 60.27px;
  display: block;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/page_top.svg) no-repeat 0 0;
  background-size: cover;
}

.page-top a:hover { 
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/page_top-hover.svg);
}

@media (max-width: 1099px) {
  .page-top {
    right: 10px;
  }

  .page-top a {
    width: 77.13px;
    height: 44.27px;
  }
}

/* Footer DND sections */

.footer {
  background-color: #F0F3F5!important;
  padding: 80px 0 0;
}

.footer .dnd-section {
  padding: 0;
}

/* Footer container */
.footer__container.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__row-1 {
  padding-bottom: 30px;
  border-bottom: 1px solid #C0D1E0;
}

.footer__row-1 .footer__navigation {
  display: flex;
}

.footer__row-1 .footer__navigation > div {
  width: calc(20% - 32px*4/5);
  margin-right: 32px; 
}

.footer__row-1 .footer__navigation > div:nth-child(5n) {
  margin-right: 0;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__item--depth-1 {
  display: block;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__item--depth-1 > .f-menu__link {
  padding-right: 24px;
  background: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/arrow-blue.svg) no-repeat right center;
  background-size: 16px 10px;
  display: inline-block;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__item--depth-1 > .f-menu__link.f-menu__no-link {
  background-image: url(https://46715910.fs1.hubspotusercontent-na2.net/hubfs/46715910/common/icn_down.svg);
  background-size: 10.76px 5.38px;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__item--depth-1 > .f-menu__link.f-menu__link--toggle {
  margin-bottom: 16px;
}

.footer__row-1 .footer__navigation .footer--nav5 .f-menu--desktop .f-menu__item--depth-1:last-child {
  display: none;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__item--depth-1 > .f-menu__link:hover {
  border-color: #125590;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__item--depth-1.f-menu__item--has-submenu > .f-menu__link {
  margin-top: 0;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__submenu {
  margin-bottom: 30px;
}

.footer__row-1 .footer__navigation .f-menu--desktop .f-menu__submenu .f-menu__item--depth-2 > .f-menu__link {
  display: none;
}


.footer__row-2 {
  padding: 40px 0;
}

.footer__row-2 .footer__info {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.footer__row-2 .footer__info .footer__logo img {
  width: 276px !important;
}

.footer__row-2 .footer__info .footer__logo .footer__comment p {
  font-size: .625rem;
  line-height: 1.5;
  margin: 10px 0 20px;
}

.footer__row-2 .footer__info .footer__address p {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: .875rem!important;
}

.footer__row-2 .footer__info .footer__menu {
  width: 450px;
}

.footer__row-2 .footer__info .footer__menu .f-menu--desktop .f-menu__wrapper {
  text-align: right;
}

.footer__row-2 .footer__info .footer__menu .f-menu--desktop .f-menu__item .f-menu__link {
  position: relative;
  padding-left: 30px;
  margin-top: 15px;
  font-size: .875rem;
}

.footer__row-2 .footer__info .footer__sns {
  margin-top: 25px;
}

.footer__row-2 .footer__info .footer__sns .social-links {
  justify-content: flex-start;
}

.footer__row-2 .footer__info .footer__sns .social-links .social-links__link {
  width: 50px;
  margin-right: 10px;
}


.footer__row-2 .footer__info .footer__sns .social-links .social-links__link:hover {
  opacity: .5;
}

.footer__copyright {
  background-color: #0F406A;
  padding: 19px 40px;
}

.footer__copyright p {
  margin: 0;
  color: rgba(255, 255, 255, .8)!important;
  font-size: .875rem;
  line-height: 1.57;
  text-align: center;
}

@media (max-width: 1099px) {
  .footer {
    padding: 0;
  }
  .footer__container.content-wrapper {
    padding: 0;
  }
  .footer__row-2 {
    padding: 0 24px 24px;
  }
  .footer__row-2 .footer__info {
    display: block;
  }

  .footer__row-2 .footer__info .footer__menu {
    margin: 0 0 25px;
    width: 100%;
  }

  .footer__row-2 .footer__info .footer__menu .f-menu__item--depth-1 {
    border-bottom: 0;
  }

  .footer__row-2 .footer__info .footer__menu .f-menu__item .f-menu__link {
    padding: 0;
    background: none;

  }

  .footer__row-2 .footer__info .footer__sns {
    margin-top: 20px;
  }

  .footer__copyright {
    padding: 16px 24px;
  }

  .footer__copyright p {
    font-size: .75rem;
  }
}

@media (max-width: 1099px) {
  .footer__row-1 {
    padding: 0;
    border-bottom: 0;
  }
  .footer__row-1 .footer__navigation {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }

  .footer__row-1 .footer__navigation > div {
    width: 100%;
    margin-right: 0;
  }

  .footer__row-1 .f-menu__child-toggle {
    width: 100%;
  }

  .footer__row-1 .footer__navigation .f-menu__submenu--level-2 .f-menu__child-toggle {
    display: none;
  }

  .footer__row-1 .footer__navigation .f-menu__submenu--level-3 {
    display: block;
  }

  .footer__row-1 .footer__navigation .footer--nav5 .f-menu__item--depth-1:last-child {
    border-bottom: 0;

  }
  .footer__row-1 .footer__navigation .footer--nav5 .f-menu__item--depth-1:last-child > .f-menu__link {
    font-size: .875rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #125590;
    padding: 14px 9px;
    box-shadow: 0 0 20px 0 rgba(18,85,144,.15);
    text-align: center;
    margin: 32px 24px 0;
  }

  .footer__row-1 .footer__navigation .footer--nav5 .f-menu__item--depth-1:last-child > .f-menu__link:hover {
    color: #ffffff!important;
    background: #1D2157!important;
  }

/* Mobile toggles */
  .footer__container.open {
    display: block;
    left: 0;
    height: calc(100vh - 66px);
    position: fixed;
    right: 0;
    top: 66px;
    z-index: 10;
    overflow: scroll;
    background-color: #F0F3F5;
  }

  .footer__container.open .footer__row-2 .footer__info .footer_siteinfo {
    display: none;
  }

  .footer__container.open .footer__row-2 {
    padding-bottom: 60px;
  }
}

.footer__search {
  display: none;
}

@media (max-width: 1099px) {
  .footer__search {
    display: block;
    margin: 20px 0 0 0;
    padding: 0 24px;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}