/* 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;
}

img {
  max-width: 100%;
  height: auto;
}
/*! 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: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}



/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

[data-show-sp][aria-hidden="true"],
[data-show-pc][aria-hidden="true"] {
  display: none;
}

.l-column {
  border-left: solid 1px var(--divider-default);
  border-right: solid 1px var(--divider-default);
  margin: 0 20px;
}

@media screen and (min-width: 577px) {
  .body-container-wrapper {
    padding: 0 2.4rem;
  }
  .l-column {
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  .body-container-wrapper {
    padding: 0 3.2rem;
  }
  .l-column {
    max-width: 131.2rem;
  }

  .body-container-wrapper > .l-column {
    min-height: calc(100svh - 69rem);
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 1200px) {
  .body-container-wrapper {
    padding: 0 8rem;
  }
}

.row-list {
  border-bottom: solid 1px var(--divider-default);
}

.row-list a {
  color: var(--text-normal);
}

@media screen and (min-width: 577px) {
  .row-list {
    display: flex;
  }
  .row-list > * {
    width: 33.33333%;
    flex-grow: 1;
    border-right: solid 1px var(--divider-default);
  }

  .row-list > *:last-child {
    border-right: none;
  }
}

@media screen and (max-width: 576px) {
  .row-list > * + * {
    border-top: solid 1px var(--divider-default);
  }
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.6rem;
  background: #fff;
}

@media screen and (min-width: 769px) {
  .flex-column {
    padding: 3.2rem;
  }
}

.text-column {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  position: relative;
}

.figure {
  line-height: 0;
  margin: 0;
  background: var(--background-light);
}

a .text-column::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23323B4B"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23323B4B"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 769px) {
  a .text-column::after {
    width: 3rem;
    height: 3rem;
  }
  a:hover .text-column::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23597697"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23597697"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}

.dialog {
  max-width: calc(100% - 4rem);
  max-height: calc(100% - 4rem);
  background: var(--background-light);
  border: none;
  padding: 7.2rem 1.6rem 3.2rem;
}

.dialog::backdrop {
  background: rgba(50,59,75,.5);
}

.dialog .close-icon {
  line-height: 0;
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}

.dialog-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: solid 1px var(--divider-default);
}

.dialog-head h2 {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: 1.2rem;
}

.dialog-head h2 span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.dialog-bottom {
  text-align: center;
  margin-top: 2.4rem;
}

.dialog-bottom .close-text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (min-width: 577px) {
  .dialog {
    max-width: 54.4rem;
    padding: 9.6rem;
  }
  .dialog .close-icon {
    top: 3.2rem;
    right: 3.2rem;
  }
  .dialog-head {
    font-size: 1.6rem;
  }
  .dialog-head h2 {
    font-size: 1.4rem;
  }
  .dialog-head h2 span {
    font-size: 3.2rem;
  }
  
}
.content-wrapper {
  margin: 0 auto;
}

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

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

@media (max-width: 768px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/
.logo .cls-1 {
  fill: none;
}

.logo .cls-2 {
  clip-path: url(#clippath);
}

.logo .cls-3 {
  fill: #343fb7;
}

.logo .cls-4 {
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: .03px;
}

@media (max-width: 991px) {
  .logo-pc {
    display: none;
  }
}
@media (min-width: 992px) {
  .logo-sp {
    display: none;
  }
}
:root {
  --primary-color: #597697;
  --accent-color: #2072CF;
  --secondary-color: #FFB427;
  --text-normal: #13132D;
  --text-light: #58616C;
  --divider-default: #B8CADE;
  --divider-light: #DEE8F3;
  --background-default: #EDF2F6;
  --background-dark: #323B4B;
  --background-light: #F5F8FA;
  --background-white: #fff;
  --coution-error: #FF0100;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  background: var(--background-default);
  color: var(--text-normal);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

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

/* Paragraphs */

p {
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  margin: 0;
}

/* Lists */

ul,
ol {
  margin: 0;
}

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

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

/* 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 var(--divider-default);
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

.lead {
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .lead {
    font-size: 1.6rem;
  }
}

.title {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .title {
    font-size: 1.8rem;
  }
}
.text-small {
  font-size: 1.3rem;
}

.color-light {
  color: var(--text-light);
}
button,
.button {
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  padding: 0;
  background-color: transparent;
}
button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* 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;
}
/* Fields */

.hs-form-field {
  margin-bottom: 2.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: .8rem;
}

/* Help text */

form legend {
  font-size: 1.4rem;
}

/* Inputs */

form input[type=text],
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: 1.6rem;
  padding: 0.7rem 1.2rem;
  width: 100% !important;
  border: solid 1px var(--divider-default);
  border-radius: 4px;
}

form input::placeholder {
  color: rgba(19,19,45,.5);
}

form textarea {
  resize: vertical;
}

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

form select {
  appearance: none;
  background: #fff url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 9.5L12 14.5L17 9.5H7Z" fill="%2358616C"/></svg>') no-repeat right .6rem center;
  background-size: 2.4rem 2.4rem;
}

/* Inputs - checkbox/radio */

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

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* 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 {
}

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


/* Validation */

.hs-form-required {
  display: inline-flex;
  padding: .2rem .8rem;
  background: var(--background-default);
  border-radius: 4px;
  font-size: 0;
  margin: 0 0 0 1.2rem;
}

.hs-form-required::before {
  content: "必須";
  font-size: 1.2rem;
}

/* .hs-input.invalid.error {
  border-color: var(--coution-error);
} */

.hs-error-msg {
  color: var(--coution-error);
  margin-top: 0.8rem;
  margin-bottom: 0;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* form layout */
.form-columns-2 {
  display: flex;
  gap: 1.6rem;
}

fieldset .input {
  margin-right: 0 !important;
}

.legal-consent-container {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.6rem;
  background: var(--background-default);
}

.legal-consent-container .hs-richtext p {
  font-size: 1.3rem;
  color: var(--text-light);
}

.legal-consent-container .hs-richtext p a {
  color: var(--text-light);
  text-decoration: underline;
}

form label.hs-form-booleancheckbox-display {
  margin-bottom: 0;
}

.hs-form-booleancheckbox-display input {
  display: none;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  display: flex !important;
  align-items: center;
  gap: .4rem;
  margin: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span::before {
  content: "";
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  background: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-checkbox.svg) no-repeat center center;
}

.hs-form-booleancheckbox-display input:checked + span::before {
  background-image: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-checked.svg)
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display .hs-form-required {
  display: none;
}

.hs-submit {
  margin-top: 4rem;
  text-align: center;
}

.hs-button {
  padding: 1.2rem 4.8rem 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  background: var(--background-dark) url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" fill="white"/><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" stroke="%23DEE8F3"/><path d="M10 8L14 12L10 16" stroke="%2358616C" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 1.2rem center;
  background-size: 2.4rem 2.4rem;
  border: none;
  border-radius: 4rem;
  color: #fff;
}

.submitted-message {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

.submitted-message h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.hbspt-form:has(.submitted-message) + .dialog-bottom {
  margin-top: 3.2rem;
}

@media screen and (min-width: 577px) {
  .submitted-message {
    gap: 2.4rem;
    font-size: 1.6rem;
  }
  
  .submitted-message h2 {
    font-size: 3.2rem;
  }
  
  .hbspt-form:has(.submitted-message) + .dialog-bottom {
    margin-top: 4rem;
  }
}
/* Table */
div[data-hs-responsive-table] {
  margin: 80px 0;
  border-radius: 4px;
  border: 1px solid var(--divider-default);

  & table {
    margin: 0;
  }
}

table {
  width: 100%;
  border: 1px solid var(--divider-default) !important;
  border-collapse: collapse;
  margin: 0;
  border: none;
  overflow-wrap: break-word;
  border-radius: 4px;
}

/* Table cells */

td,
th {
  vertical-align: top;
  border-right: 1px solid var(--divider-default);
  border-bottom: 1px solid var(--divider-default);
  padding: 1.6rem !important;
  line-height: 1.6;
  &:last-child {
    border-right: none;
  }
}

tr:last-child td {
  border-bottom: none;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* 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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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%;
}

.hs-embed-wrapper {
  max-width: 100% !important;
}
.breadcrumbs {
}
.breadcrumbs__list{
  background: var(--background-light);
  border-top: 1px solid var(--divider-default);
  list-style-type: none;
  padding: .7rem 1.6rem;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.breadcrumbs__list li + li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.94 8"><path fill="%239e9e9e" d="m0,7.05l3.05-3.05L0,.94l.94-.94,4,4L.94,8l-.94-.95Z"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  margin: 0 10px 0 0;
}

.breadcrumbs__list li {
  display: inline;
  font-size: 1.3rem;
  line-height: 1.6;
}

.breadcrumbs__list li + li {
  margin: 0 0 0 10px;
}

.breadcrumbs__list li a {
  color: var(--text-light);
}

@media screen and (min-width: 769px) {
  .breadcrumbs__list {
    padding: 1.6rem 3.2rem;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  background: var(--background-dark);
  color: #fff;
  padding: .8rem 1.2rem .8rem 2.4rem;
  border-radius: 4rem;
  transition: background-color .3s;
}

.button::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23ffffff"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23ffffff"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="%23323B4B" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
}

.button[target="_blank"]::after {
  background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" fill="white"/><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" stroke="%23DEE8F3"/><path d="M16 8L11.5 8M16 8L16 12.5M16 8L8.5 15.5" stroke="%2358616C" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

@media screen and (min-width: 769px) {
  .button:hover {
    background-color: var(--primary-color);
  }
}
.headline {
  font-size: 1.8rem;
  margin: 0;
}

.head-title {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  background: var(--background-light);
  border-top: solid 1px var(--divider-default);
  border-bottom: solid 1px var(--divider-default);
  padding: 2.4rem 1.6rem;
}

.head-title.-row {
  flex-direction: row;
  justify-content: space-between;
}

.head-title.-page-head {
  border-top: none;
}

.head-title p {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .headline {
    font-size: 2.4rem;
  }

  .headline.-fs-large {
    font-size: 2.8rem;
  }

  .headline.-fs-small {
    font-size: 2rem;
  }

  .head-title {
    padding: 4.8rem 3.2rem;
  }
}

.link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--text-normal);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.link::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23323B4B"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23323B4B"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
}

.link.-back {
  flex-direction: row-reverse;
}

.link.-back::after {
  background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="-0.5" y="0.5" width="29" height="29" rx="14.5" transform="matrix(-1 0 0 1 29 0)" fill="white"/><rect x="-0.5" y="0.5" width="29" height="29" rx="14.5" transform="matrix(-1 0 0 1 29 0)" stroke="%23B8CADE"/><path d="M16 11L12 15L16 19" stroke="%2358616C" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.link.-dl::after {
  background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23323B4B"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23323B4B"/><path d="M15 18L15 9M15 18L17.25 15.75M15 18L12.75 15.75M9 21H21" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}


@media screen and (min-width: 769px) {
  .link {
    gap: 1.2rem;
    font-size: 1.6rem;
    transition: color .3s;
  }
  .link::after {
    width: 3rem;
    height: 3rem;
    transition: background-image .3s;
  }
  .link:hover {
    color: var(--primary-color);
  }
  .link:hover::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23597697"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23597697"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
  .link.-back:hover::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="-0.5" y="0.5" width="29" height="29" rx="14.5" transform="matrix(-1 0 0 1 29 0)" fill="%23597697"/><rect x="-0.5" y="0.5" width="29" height="29" rx="14.5" transform="matrix(-1 0 0 1 29 0)" stroke="%23B8CADE"/><path d="M16 11L12 15L16 19" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
  .link.-dl:hover::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23597697"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23597697"/><path d="M15 18L15 9M15 18L17.25 15.75M15 18L12.75 15.75M9 21H21" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}
/* Header DND sections */

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

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Header container */

.header {
  position: relative;
  z-index: 999;
}

.header__container {
}

@media (min-width: 1025px) {
  .header {
    border-bottom: solid 1px var(--divider-default);
  }

  .header__container {
    display: flex;
    gap: 4rem;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 2.5rem 3.2rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .header {
    padding: 1.6rem 3.2rem;
  }
}

.header__pannel {
  line-height: 0;
}
@media (min-width: 1025px) {
  .header__pannel {
    width: 19.4rem;
  }
}
@media (max-width: 1024px) {
  .header__pannel {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: var(--background-default);
    border-bottom: solid 1px var(--divider-default);
    position: relative;
    z-index: 2;
  }
}

/* Logo */
.header__logo {
  width: 100%;

  & a {
    display: block;
  }
}

@media (max-width: 1024px) {
  .header__logo {
    width: 15.8rem;
  }
}

/* Mobile toggles */

.header__navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__navigation a,
.header__navigation button {
  color: var(--text-normal);
  font-weight: 600;
}

.header__list {
  display: flex;
  gap: 2.4rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header__list li a {
  font-size: 1.6rem;
}

.header__list--sub li a,
.header__list--sub li button {
  font-size: 1.3rem;
  line-height: 1;
}

.header__list--sub li .icon-newsletter {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  position: relative;
}

.header__list--sub li .icon-newsletter::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" fill="%23323B4B"/><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" stroke="%23323B4B"/><path d="M7 9.25L11.4353 12.3636C11.7757 12.5966 12.2243 12.5966 12.5647 12.3636L17 9.25M8 16H16C16.5523 16 17 15.5523 17 15V9C17 8.44772 16.5523 8 16 8H8C7.44772 8 7 8.44772 7 9V15C7 15.5523 7.44772 16 8 16Z" stroke="white" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  transition: background .3s;
}

@media (max-width: 1024px) {
  body.is-open {
    overflow: hidden;
    position: relative;
  }

  body.is-open .header::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100svh - 6.5rem);
    background: var(--background-dark);
    opacity: .8;
    position: absolute;
    left: 0;
    transition: .3s .3s;
  }

  .header__navigation {
    flex-direction: column;
    align-items: stretch;
    padding: 0 2rem;
    background: var(--background-default);
    border-bottom: solid 1px var(--divider-default);
    width: 100%;
    transition: .3s;
    position: absolute;
    z-index: 1;
    transform: translateY(-100%);
    visibility: hidden;
  }

  .header__navigation[aria-hidden="true"] {
    transform: translateY(-100%);
    visibility: hidden;
  }

  .header__navigation[aria-hidden="false"] {
    transform: none;
    visibility: visible;
  }

  .header__navigation[aria-hidden="true"]::after {
    opacity: 0;
    visibility: hidden;
    transition: 0s;
  }

  .header__list {
    flex-direction: column;
    gap: 1.6rem;
    padding: 3.2rem 2.8rem;
    background: var(--background-light);
    border-left: solid 1px var(--divider-default);
    border-right: solid 1px var(--divider-default);
  }
  .header__list + .header__list {
    border-top: solid 1px var(--divider-default);
    padding-bottom: 6.4rem;
  }

  .header__list li a {
    display: block;
    font-size: 1.4rem;
  }

  .header__list--sub li a,
  .header__list--sub li button {
    font-size: 1.3rem;
  }
}

.header--toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}

.header--toggle[aria-expanded="true"] svg.-open,
.header--toggle[aria-expanded="false"] svg.-close {
  display: none;
}

.header--toggle[aria-expanded="false"] svg.-open,
.header--toggle[aria-expanded="true"] svg.-close {
  display: block;
}

@media (min-width: 1025px) {
  .header--toggle {
    display: none;
  }
  .header__navigation a,
  .header__navigation button {
    transition: color .3s;
  }
  .header__navigation a:hover,
  .header__navigation button:hover {
    color: var(--primary-color);
  }
  .header__list--sub li .icon-newsletter:hover::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" fill="%23597697"/><rect x="0.5" y="0.5" width="23" height="23" rx="11.5" stroke="%23597697"/><path d="M7 9.25L11.4353 12.3636C11.7757 12.5966 12.2243 12.5966 12.5647 12.3636L17 9.25M8 16H16C16.5523 16 17 15.5523 17 15V9C17 8.44772 16.5523 8 16 8H8C7.44772 8 7 8.44772 7 9V15C7 15.5523 7.44772 16 8 16Z" stroke="white" stroke-linejoin="round"/></svg>');
  }
}
.footer {
  background: var(--background-dark);
  border-top: solid 1px var(--divider-default);
  border-bottom: solid 1px var(--divider-default);
}

@media (min-width: 577px) {
  .footer {
    padding: 0 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 0 3.2rem;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 0 8rem;
  }
}

/* pagetop */
.footer__pagetop {
  padding: 3.2rem;
  text-align: center;
}

.footer__pagetop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: #fff;
  cursor: pointer;
  transition: all .3s;  
}

.footer__pagetop-button:hover {
  color: var(--primary-color);
}

.footer__pagetop-button::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  transition: all .3s;  
  background: url('data:image/svg+xml;utf-8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 10L8 6L12 10" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
}

.footer__pagetop-button:hover::before {
  background: url('data:image/svg+xml;utf-8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 10L8 6L12 10" stroke="#597697" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
}

@media (min-width: 577px) {
  .footer__pagetop {
    text-align: right;
  }
}

.footer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 4.8rem 1.6rem;
  color: #fff;
  border-top: solid 1px var(--divider-default);
}

@media (min-width: 577px) {
  .footer__head {
    flex-direction: row;
    padding: 6.4rem 3.2rem;
  }

  .footer__head-lead {
    display: flex;
    gap: 3.2rem;
    &::before {
      content: "";
      display: block;
      width: 1px;
      background: var(--divider-default);
    }
  }
}

@media (max-width: 576px) {
  .footer__head-lead br {
    display: none;
  }
}

.footer__navigation {
  display: flex;
  flex-direction: column;
}

@media (min-width: 577px) {
  .footer__navigation {
    gap: 2.4rem;
    padding: 3.2rem;
    border-top: solid 1px var(--divider-default);
  }

}

.footer__navigation-main {
  display: flex;
}

@media (min-width: 577px) {
  .footer__navigation-main {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2.4rem;
  }
}

@media (max-width: 576px) {
  .footer__navigation-main {
    gap: 1.6rem;
    padding: 3.2rem 1.6rem;
    border-top: solid 1px var(--divider-default);
  }
}

.footer__navigation-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}


.footer__navigation-list li a {
  color: #fff;
  font-size: 1.6rem;
  transition: all .3s;
}

.footer__navigation-list li a:hover {
    color: var(--primary-color);
}

@media (min-width: 577px) {
  .footer__navigation-list {
    gap: 2.4rem;
  }
}

@media (max-width: 576px) {
  .footer__navigation-list {
    gap: 1.6rem;
    flex-direction: column;
  }
}

.footer__navigation-sublist {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer__navigation-sublist li a {
  color: rgba(255, 255, 255, .7);
  font-size: 1.2rem;
  transition: all .3s;
}

.footer__navigation-sublist li a:hover {
  color: var(--primary-color);
}

.footer__navigation-sublist li a[target] {
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all .3s;
}

.footer__navigation-sublist li a[target]::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  transition: all .3s;
  background: url('data:image/svg+xml;utf-8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.7"><path d="M13.5 4.5L9.75 4.5M13.5 4.5L13.5 8.25M13.5 4.5L4.5 13.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></g></svg>') no-repeat center center;
}

.footer__navigation-sublist li:hover a[target]::after {
  background: url('data:image/svg+xml;utf-8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.7"><path d="M13.5 4.5L9.75 4.5M13.5 4.5L13.5 8.25M13.5 4.5L4.5 13.5" stroke="#597697" stroke-linecap="round" stroke-linejoin="round"/></g></svg>') no-repeat center center;
}

@media (min-width: 577px) {
  .footer__navigation-sublist {
    justify-content: flex-end;
    gap: 1.6rem;
  }
}

@media (max-width: 576px) {
  .footer__navigation-sublist {
    gap: .8rem 1.6rem;
    padding: 3.2rem 1.6rem 0;
    border-top: solid 1px var(--divider-default);
  }
}

.footer__other {
  display: flex;
  gap: 3.2rem;
}

.footer__other dl {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: 0;
}

.footer__other dl dt {
  color: rgba(255, 255, 255, .7);
  font-size: 1.0rem;
  line-height: 1.6;
}

.footer__other dl dd {
  margin: 0;
}

.footer__other dl dd a {
  color: #fff;
}

.footer__other dl dd a:hover{
  color: var(--primary-color);
}

.footer__other dl dd a[target] {
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all .3s; 
}

.footer__other dl dd a[target]::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  transition: all .3s;  
  background: url('data:image/svg+xml;utf-8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.7"><path d="M13.5 4.5L9.75 4.5M13.5 4.5L13.5 8.25M13.5 4.5L4.5 13.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></g></svg>') no-repeat center center;
}

.footer__other dl dd a:hover[target]::after {
  background: url('data:image/svg+xml;utf-8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.7"><path d="M13.5 4.5L9.75 4.5M13.5 4.5L13.5 8.25M13.5 4.5L4.5 13.5" stroke="#597697" stroke-linecap="round" stroke-linejoin="round"/></g></svg>') no-repeat center center;
}

.footer__other dl dd a.-x-icon::after {
  width: 2.4rem;
  height: 2.4rem;
  background: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.8014 2.83337H20.867L14.136 10.4975L22 20.894H15.8287L10.997 14.5761L5.46551 20.894H2.39987L9.53082 12.6968L2 2.83337H8.32456L12.6898 8.60478L17.8014 2.83337ZM16.7284 19.0946H18.4279L7.43152 4.56613H5.60546L16.7284 19.0946Z" fill="white"/></svg>') no-repeat center center;
  
}

@media (min-width: 577px) {
  .footer__other {
    justify-content: flex-end;
    padding: 3.2rem;
    border-top: solid 1px var(--divider-default);
  }
}

@media (max-width: 576px) {
  .footer__other {
    flex-direction: column;
    padding: 3.2rem 1.6rem;
  }
}

.footer__copyright {
  padding: 1.6rem 3.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  border-top: solid 1px var(--divider-default);
}
@media (min-width: 577px) {
  .footer__copyright {
    color: rgba(255, 255, 255, .7);
    text-align: right;
  }
}
@media (max-width: 576px) {
  .footer__copyright {
    text-align: center;
    color: #fff;
  }
}

.newsletter-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  width: 13.6rem;
  height: 13.6rem;
  padding: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.6;
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--background-dark);
  box-shadow: 0px 1px 4px 0px #323B4B33;
  color: #fff;
  text-align: center;
}

.newsletter-button span {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--divider-default);
}

.newsletter-button:hover {
  background: var(--primary-color);
}

@media (max-width: 576px) {
  .newsletter-button {
    display: none;
  }
}
.page-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem;
  background: #fff;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

@media screen and (min-width: 577px) {
  .page-contact {
    gap: 2.4rem;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) {
  .page-contact {
    padding: 4rem;
  }
}

@media screen and (max-width: 576px) {
  .page-contact br {
    display: none;
  }
}

/* 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: 768px) {
  .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;
  }
}


@media (max-width: 768px) {
  .u-show-pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .u-show-sp {
    display: none;
  }
}

.text-en {
  font-family: "DM Sans", sans-serif;
}


/* template */
/* Blog post */
@media screen and (min-width: 769px) {
  .hs-blog-post .content-wrapper {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .hs-blog-post .breadcrumbs {
    padding: .8rem 1.6rem;
    border-top: 1px solid var(--divider-default);
  }
  .hs-blog-post .breadcrumbs .l-column {
    border: none;
    margin: 0;
  }
  .hs-blog-post .breadcrumbs__list {
    border: none;
    padding: 0;
  }
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.post-tags .tag {
  font-size: 1.2rem;
  line-height: 1;
  padding: .6rem .8rem;
  color: #fff;
  background: var(--background-dark);
  box-shadow: 0px 1px 4px 0px #323B4B33;
  border-radius: .4rem;
}

.post-tags .tag.-secondary {
  background: #DEE8F3;
  border: solid 1px #B8CADE;
  color: #13132D;
}

.post-mame {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-light);
}

@media screen and (min-width: 769px) {
  .post-mame {
    font-size: 1.3rem;
  }
}

.post-date {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.blog-post .l-column {
  margin: 0;
  background: var(--background-light);
}

@media screen and (min-width: 577px) {
  .blog-post .l-column {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .blog-post .l-column {
    border: none;
  }
}

.blog-post ul {
  list-style-type: none;
  padding: 0;
}

/* ブログヘッダー */
.blog-post__head-wrap {
  background: #fff;
}
@media screen and (min-width: 577px) {
  .blog-post__head-wrap {
    background: #fff;
    margin-bottom: 8rem;
  }
  .blog-post__head {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  .blog-post__head-wrap {
    padding-bottom: 4rem;
  }
  .blog-post__head {
    padding: 4rem 2rem 2.4rem;
  }
}

.blog-post__head-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width: 577px) {
  .blog-post__head-text {
    width: 53.8rem;
    padding: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .blog-post__head-text {
    gap: 2.4rem;
    width: 65.831842576%;
    padding: 4rem 3.2rem;
  }
}

@media screen and (max-width: 576px) {
  .blog-post__head-text {
    margin-bottom: 1.6rem;
  }
}

/* ブログタイトル */
.blog-post h1 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .blog-post h1 {
    gap: 2.4rem;
    font-size: 3.2rem;
  }
}

.blog-post h1 .blog-post__sub-title {
  display: block;
  font-size: 1.6rem;
  color: var(--text-light);
}
@media screen and (min-width: 769px) {
  .blog-post h1 .blog-post__sub-title {
    font-size: 2.0rem;
  }
}

/* ブログ情報 */
.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.blog-post__meta time {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--text-light);
}

@media screen and (min-width: 769px) {
}

/* 著者 */
.blog-post__author {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
}

@media screen and (min-width: 769px) {
  .blog-post__author {
  }
}

/* シェア */
.blog-post__share {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 577px) {
  .blog-post__share {
    align-self: stretch;
    align-items: flex-end;
    padding: 4rem 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .blog-post__share {
    padding: 4rem;
  }
}

.blog-post__share-list {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 1.6rem;
}
@media screen and (min-width: 577px) {
  .blog-post__share-list {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

.blog-post__share-list li {
  width: 2.4rem;
}

.blog-post__share-list li:last-child {
  width: auto;
}

.blog-post__share-icon {
  display: block;
  width: 100%;
  height: 2.4rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.blog-post__share-icon.icon-fb {
  background-image: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-fb.svg);
}
.blog-post__share-icon.icon-linkedin {
  background-image: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-linkedin.svg);
}
.blog-post__share-icon.icon-x {
  background-image: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-x.svg);
}
.blog-post__share-icon.icon-hatena {
  background-image: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-hatena.svg);
}
.blog-post__share-icon.icon-copy {
  height: auto;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: .25rem 0 .25rem 2.8rem;
  background-position: left center;
  background-size: 2.4rem 2.4rem;
  background-image: url(//23485944.fs1.hubspotusercontent-na1.net/hubfs/23485944/raw_assets/public/mir/images/icon-link.svg);
  color: var(--text-light);
}

@media screen and (min-width: 577px) {
  .blog-post__share-list + div {
    margin-top: auto;
  }
}
@media screen and (min-width: 769px) {
  .blog-post__share-icon {
    transition: opacity .3s;
  }
  .blog-post__share-icon:hover {
    opacity: .7;
  }
}

.blog-post__pdf {
  margin: 0 2rem;
}
@media screen and (min-width: 577px) {
  .blog-pdf--sp {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .blog-pdf--pc {
    display: none;
  }
}

.blog-post__hero {
  width: 100%;
  height: 18.2rem;
  margin: 0 0 2.4rem;
}

.blog-post__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  .blog-post__hero {
    margin-bottom: 0;
    height: 36rem;
  }
}

/* ブログコンテンツ */
.blog-post__body {
  background: #fff;
  padding: 4rem 2rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 577px) {
  .blog-post__contents {
    display: flex;
    border-top: 1px solid var(--divider-default);
  }
  .blog-post__body {
    width: 53.8rem;
  }
  .blog-post__side {
    width: 19.3rem;
    border-left: 1px solid var(--divider-default);
  }
}
@media screen and (min-width: 769px) {
  .blog-post__body {
    width: 65.831842576%;
    padding: 8rem 3.2rem;
    font-size: 1.8rem;
  }

  .blog-post__side {
    width: 34.436493738%;
  }
}

@media screen and (max-width: 576px) {
  .blog-post__side {
    display: none;
  }
}

#hs_cos_wrapper_post_body > div {
  margin: 4rem 0;
}
#hs_cos_wrapper_post_body > *:first-child {
  margin-top: 0;
}
#hs_cos_wrapper_post_body > *:last-child {
  margin-bottom: 0;
}

.post-title {
  line-height: 1.6;
  color: var(--text-light);
}
@media screen and (min-width: 769px) {
  .post-title {
    font-size: 2rem;
  }
}

/* サイドナビ */
.blog-post__sticky {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: sticky;
  top: 0;
  padding: 1.6rem;
}

.blog-post__index ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.blog-post__index ul li a {
  display: block;
  color: var(--text-light);
  font-size: 1.4rem;
  line-height: 1.6;
  padding: .8rem 0 .8rem .8rem;
  border-left: solid .4rem transparent;
  position: relative;
}

.blog-post__index ul li a.is-current {
  border-left-color: var(--divider-default);
  color: var(--text-normal);
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .blog-post__sticky {
    gap: 2.4rem;
    padding: 3.2rem;
  }
  .blog-post__index ul li a {
    font-size: 1.6rem;
    padding: .8rem 0 .8rem 2.4rem;
  }
}

/* テキスト */
.blog-post__body p {
  margin: 0 0 2.4rem;
}

/* リスト */
.blog-post__body ul,
.blog-post__body ol {
  margin: 0 0 2.4rem;
  padding: 0 0 0 2.4rem;
}

.blog-post__body ul:last-child,
.blog-post__body ol:last-child {
  margin: 0;
}

.blog-post__body ul {
  list-style-type: disc;
}

@media screen and (min-width: 769px) {
  .blog-post__body p {
    margin: 0 0 3rem;
  }
  .blog-post__body ul,
  .blog-post__body ol {
    margin: 0 0 3rem;
    padding: 0 0 0 2.4rem;
  }
}

/* 下線 */
.blog-post__body p span[style*="underline"] {
  text-decoration: none !important;
  background:linear-gradient(transparent 80%, #B8CADE 20%);
}

/* リンク */
.blog-post__body a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* H2 */
.blog-post__body h2 {
  font-size: 2rem;
  line-height: 1.6;
  padding: 0 0 0 .8rem;
  margin: 4rem 0 2.4rem;
  border-left: solid 4px var(--divider-default);
}

.blog-post__body h2:first-child,
.blog-post__body a[data-hs-anchor]:first-child + h2 {
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .blog-post__body h2 {
    font-size: 2.8rem;
    padding: 0 0 0 2rem;
    margin: 8rem 0 4rem;
  }
}

/* H3 */
.blog-post__body h3 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 2.4rem 0;
}
@media screen and (min-width: 769px) {
  .blog-post__body h3 {
    font-size: 2.4rem;
    margin: 4rem 0;
  }
}

/* H4 */
.blog-post__body h4 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 2.4rem 0;
}

@media screen and (min-width: 769px) {
  .blog-post__body h4 {
    font-size: 2rem;
    margin: 4rem 0;
  }
}

/* 共通背景/罫線付きBOX */
.post-box {
  background-color: var(--background-light);
  padding: 1.6rem;
}

.post-box.-border {
  border: solid 1px var(--divider-light);
  background: none;
}

@media screen and (min-width: 769px) {
  .post-box {
    padding: 2.4rem;
  }
}

/* 共通2カラム */
.blog-post__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.2rem 0;
}

.blog-post__row > * {
  width: 47.832585949%;
}

.blog-post__row.-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .blog-post__row {
    flex-direction: column;
    gap: 1.6rem;
  }
  .blog-post__row > * {
    width: 100%;
  }
}

/* ボタン */

.blog-post__body .button {
  color: #fff;
  text-decoration: none;
}

.post-button-wrap {
  text-align: center;
}

/* 戻るボタン */
.blog-post__back {
  padding: 3.2rem;
  background: var(--background-light);
  border-top: 1px solid var(--divider-default)
}


@media screen and (max-width: 768px) {
  .blog-post__back {
    padding: 1.6rem 2rem;
  }
}

/* テーブル */
.blog-post__body table {
  margin: 0 0 4rem;
}

/* 引用 */
.blog-post__body blockquote {
  border: none;
  background: var(--background-light);
  padding: 4.8rem 3.6rem;
  position: relative;
  margin: 4rem 0;
}

.blog-post__body blockquote::before,
.blog-post__body blockquote::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
}

.blog-post__body blockquote::before {
  border-top: solid 1px var(--divider-default);
  border-left: solid 1px var(--divider-default);
  top: 2.4rem;
  left: 2rem;
}

.blog-post__body blockquote::after {
  border-right: solid 1px var(--divider-default);
  border-bottom: solid 1px var(--divider-default);
  right: 2rem;
  bottom: 2.4rem;
}

.blog-post__body blockquote p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .blog-post__body blockquote {
    padding: 4.8rem 6.4rem;
  }

  .blog-post__body blockquote::before {
    top: 2.4rem;
    left: 3.2rem;
  }
  
  .blog-post__body blockquote::after {
    right: 3.2rem;
    bottom: 2.4rem;
  }
}

/* blog listing */
.blog-listing__head {
  justify-content: center;
  gap: .4rem;
  font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
  .blog-listing__head {
    gap: 1.6rem;
    min-height: 27.2rem;
  }
}

.blog-listing__column {
}

.blog-listing__sidebar {
  background: var(--background-light);
}

.blog-listing__sidebar dl {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  padding: 1.6rem;
}

.blog-listing__sidebar dl dt {
  color: var(--text-light);
  font-weight: 600;
}

.blog-listing__sidebar dl dd {
  margin: 0;
}

.blog-listing__sidebar .tag {
  background: #fff;
  border: solid 1px var(--divider-default);
  box-shadow: 0px 1px 4px 0px #323B4B33;
  color: var(--text-normal);
  transition: border-color .3s;
}

.blog-listing__sidebar .tag.is-current {
  background: var(--background-dark);
  color: #fff;
  border: none;
}

.blog-listing__sidebar-list {
  display: flex;
  gap: 2.4rem;
}

.blog-listing__sidebar-list li a {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
}

.blog-listing__sidebar-list li.is-current a {
  font-weight: 700;
  color: var(--text-normal);
  border-bottom: solid 1px var(--text-normal);
  padding-bottom: .8rem;
}

.blog-listing__body {
  background: #fff;
}

@media screen and (min-width: 1200px) {
  .blog-listing__sidebar dl {
    padding: 3.2rem;
    gap: 2.4rem;
  }
}

@media screen and (min-width: 577px) {
  .blog-listing__column {
    display: flex;
    flex: 1;
  }
  .blog-listing__sidebar {
    flex: 1;
    border-right: solid 1px var(--divider-default);
  }
  .blog-listing__body {
    /* width: 76.8rem; */
    width: 68.571428571%;
  }
}

@media screen and (min-width: 769px) {
  .blog-listing__sidebar dl dt {
    font-size: 2rem;
  }
  .blog-listing__sidebar .tag:hover {
    border-color: var(--background-dark);
  }
  .blog-listing__sidebar-list {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .blog-listing__sidebar {
    border-bottom: solid 1px var(--divider-default);    
  }
}

.post-list {
  display: flex;
  flex-direction: column;
}

.post-item + .post-item {
  border-top: solid 1px var(--divider-default);
}

.post-item__link {
  display: flex;
  align-items: flex-start;
  color: var(--text-normal);
  padding: 1.6rem;
  gap: 1.6rem;
  background: #fff url('data:image/svg+xml;utf-8,<svg width="39" height="40" viewBox="0 0 39 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M39.5 39.5H1.20711L39.5 1.20711V39.5Z" fill="%23F5F8FA" stroke="%23B8CADE"/></svg>') no-repeat right -1px bottom -1px;
  background-size: 4rem 4rem;
}

@media screen and (min-width: 1200px) {
  .post-item__link {
    padding: 3.2rem;
    gap: 3.2rem;
  }
}

@media screen and (min-width: 769px) {
  .post-list {
  }

  .post-item__link {
    transition: background .3s;
  }

  .post-item__link:hover {
    background-image:  url('data:image/svg+xml;utf-8,<svg width="39" height="40" viewBox="0 0 39 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M39.5 39.5H1.20711L39.5 1.20711V39.5Z" fill="%23597697" stroke="%23B8CADE"/></svg>');
  }

  .post-item__link:hover .post-item__image img {
    transform: scale(1.1);
  }
}

.post-item__image {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 9.6rem;
  height: 9.6rem;
  margin: 0;
}

.post-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  .post-item__image {
    width: 16rem;
    height: 16rem;
    transition: transform .3s;
  }
  .post-item__image img {
    transition: transform .3s;
  }
}

.post-item__text {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.post-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  padding: .4rem 0;
}

.post-item__meta time {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
}

.post-item__title {
  font-size: 1.4rem;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .post-item__title {
    font-size: 2rem;
  }
}

.post-item__desc {
  color: var(--text-light);
  margin: 0;
}
@media screen and (min-width: 769px) {
  .post-item__desc {
    font-size: 1.6rem;
  }
}

.post-item.-card + .post-item.-card {
  border-top: none;
  border-left: solid 1px var(--divider-default);
}

.post-item.-card .post-item__link {
  flex-direction: column;
  height: 100%;
}

.post-item.-card .post-item__image {
  width: 100%;
}

@media screen and (min-width: 577px) {
  .post-list.-card {
    flex-direction: row;
  }
  
  .post-item.-card {
    flex: 1;
  }

  .post-item.-card .post-item__image {
    height: 18.4rem;
  }
}

@media screen and (max-width: 576px) {
  .post-item.-card .post-item__image {
    position: relative;
    height: auto;
  }
  
  .post-item.-card .post-item__image::before {
    content: "";
    display: block;
    padding-top: 55.081967213%;
  }
  .post-item.-card .post-item__image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* pagination */

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  border-top: solid 1px var(--divider-default);
  padding: 3.2rem;
  gap: 1.6rem;
}
@media screen and (min-width: 769px) {
  .blog-pagination {
  }
}

.blog-pagination-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.blog-pagination-center a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.blog-pagination-center a.active {
  background: var(--background-default);
  color: var(--text-normal);
  font-weight: 700;
}


.blog-pagination-left,
.blog-pagination-right {
  line-height: 0;
}

.blog-pagination__link {
  display: block;
}

.blog-pagination__link.-disabled {
  opacity: .5;
  pointer-events: none;
}

/* 検索結果 */

.results .blog-listing__head {
  min-height: inherit;
}

.results-headline {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 4rem 3.2rem;
  border-bottom: solid 1px var(--divider-default);
  background: #fff;
}

.result-length {
  font-size: 1.6rem;
  font-weight: 400;
}

.hs-search__no-results {
  padding: 3.2rem;
}

/* お知らせ */

.body-container--news-post .l-column {
  background: #fff;
}

.body-container--news-post .blog-post__head-wrap {
  margin: 0;
}

.body-container--news-post .blog-post__head {
  display: block;
  position: relative;
  padding: 1.5rem 2rem 3.2rem;
}
.body-container--news-post .blog-post__head-text {
  width: 100%;
  padding: 0;
}

.body-container--news-post .blog-post__meta .news-post__tag {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.body-container--news-post .blog-post__meta .news-post__tag::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  background: var(--divider-light);
}

.body-container--news-post .blog-post__hero {
  margin: 0 auto;
}

.body-container--news-post .blog-post__body {
  width: 100%;
}

.body-container--news-post .blog-post__back {
  background-image: var(--background-light);
}

.body-container--news-post .blog-post__box ul li {
  padding: 1.2rem 0;
}

.body-container--news-post .blog-post__box ul li::before {
  display: none;
}

@media screen and (min-width: 577px) {
  .body-container--news-post .l-column {
    padding: 0 2rem;
  }
  .body-container--news-post .blog-post__head {
    max-width: 73.6rem;
    margin: 0 auto;
    padding: 3.2rem 0;
  }
  .body-container--news-post .blog-post__share {
    padding: 0;
    position: absolute;
    right: 0;
    top: 3.2rem;
  }
  .body-container--news-post .blog-post__hero {
    max-width: 73.6rem;
    height: 34.5rem;
    margin: 0 auto;
  }
  .body-container--news-post .blog-post__body {
    max-width: 73.6rem;
    padding: 8rem 0;
    margin: 0 auto;
  }
  .body-container--news-post .blog-post__back {
    margin: 0 -2rem;
  }
}

@media screen and (max-width: 576px) {
  .body-container--news-post .blog-post__head-wrap {
    padding: 0;
  }
  .body-container--news-post .blog-post__head-text {
    gap: .8rem;
  }
  .body-container--news-post .blog-post h1 {
    gap: .8rem;
    font-size: 1.6rem;
  }
  .body-container--news-post .blog-post h1 .blog-post__sub-title {
    font-size: 1.4rem;
  }

  .body-container--news-post .blog-post__share-list {
    padding-top: 1rem;
  }

  .body-container--news-post .blog-post__share-list li {
    width: 2rem;
    padding: .2rem;
    box-sizing: content-box;
  }
  .body-container--news-post .blog-post__share-list li:last-child {
    width: auto;
    padding: 0;
  }
  .body-container--news-post .blog-post__share-icon {
    height: 2rem;
  }

  .body-container--news-post .blog-post__share-icon.icon-copy {
    background-size: 2rem 2rem;
  }

  .body-container--news-post .blog-post__body {
    padding-top: 1.5rem;
  }

  .body-container--news-post .post-box {
    padding: 2.4rem 2rem;
  }

  .body-container--news-post .blog-post__box ul li {
    padding: .8rem 0;
  }
}


.news-item + .news-item {
  border-top: solid 1px var(--divider-default);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.news-item__tag {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  color: var(--text-light);
}

.news-item__tag::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  background: var(--divider-default);
}

.news-item__meta time {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.news-item__link {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: var(--text-normal);
  padding: 1.6rem;
}

.news-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex: 1;
  font-size: 1.4rem;
  font-weight: 400;
}

.news-item__title::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23323B4B"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23323B4B"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
}

@media screen and (min-width: 1200px) {
  .news-item__link {
    padding: 3.2rem;
    gap: 3.2rem;
  }
}

@media screen and (min-width: 769px) {
  .post-list:has(.news-item.size) {
    border-bottom: solid 1px var(--divider-default);
  }
  .news-item__link {
    gap: 1.6rem;
  }
  .news-item__title {
    align-items: flex-start;
    transition: color .3s;
    gap: 4rem;
    font-size: 1.6rem;
  }

  .news-item__title::after {
    transition: background .3s;
    width: 3rem;
    height: 3rem;
  }
  .news-item__link:hover .news-item__title {
    color: var(--primary-color);
  }
  .news-item__link:hover .news-item__title::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23597697"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23597697"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }

  .news-item__meta {
    gap: 1.6rem;
  }
  .news-item__tag {
    gap: 1.6rem;
    font-size: 1.4rem;
  }
  
  .news-item__meta time {
    font-size: 1.2rem;
  }
}
.home .post-item__title {
  font-size: 1.6rem;
}

@media screen and (min-width: 577px) {
  .home .post-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home .post-item:first-child {
    width: 100%;
  }

  .home .post-item:not(:first-child) {
    width: 33.33333%;
  }

  .home .post-item:not(:first-child) .post-item__link {
    flex-direction: column;
    height: 100%;
    gap: 2.4rem;
  }

  .home .post-item:not(:first-child,:last-child) {
    border-right: solid 1px var(--divider-default)
  }

  .home .post-item__image {
    width: 100%;
    height: auto;
    position: relative;
  }

  .home .post-item__image::before {
    content: "";
    display: block;
    padding-top: 59.354838709%;
  }

  .home .post-item__image img {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .home .post-item:first-child .post-item__image {
    width: 42.375601926%;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 769px) {
  .home .post-item__title {
    font-size: 2rem;
  }
  .home .post-item:first-child .post-item__title {
    font-size: 2.8rem;
  }
  .home .post-item:first-child .post-item__desc {
    font-size: 1.8rem;
  }
  .home .post-item:first-child .post-item__author-name {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 576px) {
  .home .post-item:first-child .post-item__link {
    flex-direction: column;
    height: 100%;
    gap: 1.6rem;
  }
  .home .post-item:first-child .post-item__image {
    width: 100%;
    height: auto;
  }

  .home .post-item:first-child .post-item__image::before {
    content: "";
    display: block;
    padding-top: 59.354838709%;
  }

  .home .post-item:first-child .post-item__image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .home .post-item:first-child .post-item__title {
    font-size: 1.8rem;
  }
  .home .post-item:first-child .post-item__desc {
    font-size: 1.6rem;
  }
}

.post-link {
  background: var(--background-light);
  border-top: solid 1px var(--divider-default);
  padding: 2.4rem 1.6rem;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .post-link {
    padding: 5.2rem 3.2rem;
  }
}

.home section:not(:first-of-type, :last-child) {
  margin: 0 0 4rem;
}
@media screen and (min-width: 769px) {
  .home section:not(:first-of-type, :last-child) {
    margin: 0 0 8rem;
  }
}

.home-all-tags {
  background: #fff;
  border-bottom: solid 1px var(--divider-default);
  padding: 3.2rem 1.6rem;
}
@media screen and (min-width: 769px) {
  .home-all-tags {
    padding: 3.2rem;
  }
}

.home-all-tags__list .tag {
  background: #fff;
  border: solid 1px var(--divider-default);
  box-shadow: 0px 1px 4px 0px #323B4B33;
  color: var(--text-normal);
  transition: border-color .3s;
}

@media screen and (min-width: 769px) {
  .home-all-tags__list .tag:hover {
    border-color: var(--background-dark);
  }
}

.home-about {
  border-bottom: solid 1px var(--divider-default);
}

.home-about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  padding: 0 3.2rem;
}

.home-about__logo figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 17rem;
  background: #fff;
  border-left: solid 1px var(--divider-default);
  border-right: solid 1px var(--divider-default);
}

.home-about__logo figure img {
  width: 17.2rem;
}

.home-about__text {
  padding: 3.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.2;
  background: var(--background-light);
  border-top: solid 1px var(--divider-default);
}

@media screen and (min-width: 577px) {
  .home-about__logo figure {
    height: 24rem;
  }
  .home-about__logo figure img {
    width: 50.951086956%;
  }
}

@media screen and (min-width: 769px) {
  .home-about__logo {
    padding: 0 19.2rem;
  }
  .home-about__logo figure {
    height: 41.8rem;
  }
  .home-about__logo figure img {
    width: 37.5rem;
  }
  .home-about__text {
    padding: 6.4rem 19.2rem 8rem;
    font-size: 1.8rem;
  }
}

.news {
  padding: 0 0 8rem;
}

.news__list {
  border-bottom: solid 1px var(--divider-default);
}

.news__item + .news__item {
  border-top: solid 1px var(--divider-default);
}

.news__link {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.2rem;
  color: var(--text-normal);
  padding: 1.6rem;
  background: #fff;
}

.news__meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.4rem;
  min-width: 20.5rem
}

.news__meta time {
  font-size: 1.3rem;
  position: relative;
}

.news__meta time::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  background: var(--divider-light);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.2rem;
  margin: auto;
}

.news__tag {
  font-size: 1.3rem;
  font-weight: 400;
}

.news__title {
  justify-content: space-between;
  gap: 1.2rem;
  flex: 1;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.news__title::after {
  flex-shrink: 0;
}

@media screen and (min-width: 577px) {
  .news__link {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .news__title {
    gap: 8rem;
  }
}

@media screen and (min-width: 769px) {
  .news__link {
    gap: 1.6rem;
    padding: 3.2rem;
  }
  .news__meta {
    gap: 3.2rem;
  }
  .news__tag {
    font-size: 1.4rem;
  }
  .news__meta time {
    font-size: 1.4rem;
  }
  .news__meta time::after {
    right: -1.6rem;
  }
  .news__title {
    font-size: 1.6rem;
  }
  .news__link:hover .news__title {
    color: var(--primary-color);
  }
  .news__link:hover .news__title::after {
    background-image: url('data:image/svg+xml;utf-8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" fill="%23597697"/><rect x="0.5" y="0.5" width="29" height="29" rx="14.5" stroke="%23597697"/><path d="M12.75 10.5L17.25 15L12.75 19.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}
.about__head {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4.8rem 2rem;
  background: #fff;
}

.about__head h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  line-height: 0;
  text-align: center;
}

.about__head h1::after {
  content: "";
  display: block;
  width: 10rem;
  margin: 0 auto;
  border-top: solid 1px var(--divider-default);
}

.about__head h1 img {
  width: 25rem;
}

.about__text {
  line-height: 2.2;
  font-weight: 500;
}

.about__text .row-fluid .span12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}

.about__text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.4rem;
}

@media screen and (min-width: 577px) {
  .about__head {
    gap: 4rem;
    padding: 12rem 3.2rem;
  }
  .about__head h1 {
    gap: 4rem;
  }
  .about__head h1::after {
    width: 13rem;
  }
  .about__text {
    font-weight: 600;
    line-height: 2.5;
    text-align: center;
  }
}

@media screen and (min-width: 769px) {
  .about__head h1 img {
    width: 43rem;
  }
  .about__text h2 {
    font-size: 2.4rem;
    margin: 0 0 3.2rem;
  }
  .about__text {
    font-size: 1.6rem;
  }
}
.researcher__content {
  overflow: hidden;
  padding: 2rem;
  background: #fff;
}
.researcher__content .figure {
  width: 14rem;
}
.researcher__name {
  font-size: 2rem;
  font-weight: 600;
}

.researcher__name span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: .8rem;
  color: var(--text-light);
}

.researcher__text {
  font-size: 1.6rem;
}

.researcher__text p + p {
  margin-top: 1.8rem;
}

@media screen and (min-width: 577px) {
  .researcher__content .figure {
    float: left;
    width: 40.947867298%;
    margin: 0 3.2rem 0 0;
  }

  .researcher__text {
    display: flow-root;
  }

  .researcher__name {
    font-size: 2.8rem;
    margin: 0 0 2.4rem;
  }

  .researcher__text {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 769px) {
  .researcher__content {
    padding: 3.2rem;
  }
}

@media screen and (max-width: 576px) {
  .researcher__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .researcher__head {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
}
.head-title:has(.filter) {
  border-bottom: none;
}
.filter {
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-button {
  color: #58616C;
  font-size: 1.6rem;
  font-weight: 600;
  font-variant: "weght" 600;
  line-height: 1.6;
  padding: 0 0 .8rem;
}

.filter-button[aria-expanded="true"] {
  color: #13132D;
  border-bottom: solid 1px #13132D;
}

@media screen and (min-width: 769px) {
  .head-title:has(.filter) {
    gap: 1.6rem;
  }

  .filter {
    gap: 2.4rem;
    margin: 0 0 .4rem;
  }
  .filter-button {
    font-size: 1.8rem;
  }
}