/* 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
*/
:root {
  --accent-color: #E50012;
  --color-black: #303030;
  --color-gray: #757575;
  --color-gray-variable1: #AFAFAF;
  --color-white: #F4F4F4;
  --transition-1: cubic-bezier(0.445,0.05,0.55,0.95);
  --transition-2: cubic-bezier(.785,.135,.15,.86);
  --transition-3: cubic-bezier(0.87, 0, 0.13, 1);
}


/* 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 {
  background: #fbfbfb;
  margin: 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;
}

img {
  width: 100%;
  height: auto;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

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

@media (min-width: 751px) {
  .for-sp {
    display: none;
  }
}

@media (max-width: 750px) {
  .for-pc {
    display: none;
  }
}

.body-container-wrapper {
  background: #fbfbfb;
  position: relative;
  z-index: 1;
}

.inner {
  margin: 0 4.2rem;
}
@media (max-width: 750px) {
  .inner {
    margin: 0 2rem;
  }
}

.pages {
  padding: 23.5rem 0 0;
}

.page-head {
  margin-bottom: 12rem;
}

.page-text {
  width: 66.8rem;
  margin: 0 0 0 auto;
}

@media (max-width: 750px) {
  .pages {
    padding: 19rem 0 0;
  }
  .page-text {
    width: 100%;
  }
}

.section {
  background: #fbfbfb;
  position: relative;
}


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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

html {
  font-size: .6944444444vw;
}
@media (max-width: 750px) {
  html {
    font-size: 2.564102564vw;
  }
}

body {
  font-family: indivisible-variable, heisei-kaku-gothic-std, sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-size-adjust: 100%;
  color: #303030;
  scrollbar-gutter: stable;
  opacity: 0;
  transition: opacity .2s;
}

.wf-active:not(:has(.home-hero)) body {
  opacity: 1;
  transition: opacity .2s .3s;
}

body.is-fade-out {
  opacity: 0;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--color-black);
}

/* Lists */

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

.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 #CCC;
}

/* Image alt text */

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

/* 英語 */
.en {
  font-family: indivisible-variable, sans-serif;
}

/* 見出し */
.headline {
  font-size: 4.0rem;
  line-height: 1.5;
  margin: 0;
}

.headline > span {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  margin: 0 0 4rem;
}

.headline > span::before {
  content: "";
  display: block;
  width: 2rem;
  height: .6rem;
  background: var(--accent-color);
  margin: 0 0 .4rem;
}

.headline.-en em {
  display: block;
  font-size: 11rem;
  font-family: indivisible-variable, sans-serif;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.06em;
  line-height: .85;
  clip-path: inset(-.1em -.2em -.15em);
  word-break: keep-all;
}

.headline.-secondary em {
  font-size: 10rem;
}
@media (min-width: 751px) {
  a:hover {
    transition: opacity .3s;
  }
  a:not(.link):hover {
    opacity: 0.7;
  }
}
@media (max-width: 750px) {
  .headline {
    font-size: 2.6rem;
  }
  .headline > span {
    margin: 0 0 3rem;
    font-size: 1.3rem;
  }
  .headline > span::before {
    width: 16px;
    height: 4px;
  }
  .headline.-en em {
    font-size: 6.6rem;
  }

  .pages-hero .headline.-en em {
    font-size: 7.6rem;
  }
  
  .headline.-secondary em {
    font-size: 6.2rem;
  }
}

.lead {
  font-size: 2.0rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .lead {
    font-size: 1.6rem;
  }
}

.page-copy {
  font-size: 7.0rem;
  font-weight: 700;
  line-height: 1.22;
}

.page-copy.-en {
  line-height: 1;
  font-variation-settings: "wght" 500;
}

.page-lead {
  font-size: 2.6rem;
  font-variation-settings: "wght" 500;
  font-weight: 700;
  line-height: 1.4;
}

.page-head {
  margin: 0 0 12rem;
}
@media (max-width: 750px) {
  .page-copy {
    font-size: 3.6rem;
  }
  .page-lead {
    font-size: 1.8rem;
  }
  .page-head {
    margin: 0 0 5rem;
  }
}
[data-line-fade] {
  display: block;
  transform: translateY(120%);
}
.icon-arrow {
  display: inline-block;
  width: 1.4rem;
  height: .9rem;
  background: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23757575"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  transition: background-image .3s;
  margin: 0 0 0 0.5rem;
}

.icon-arrow.-red {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23E50012"/></svg>');
}

a[target] .icon-arrow {
  transform: rotate(-45deg);
  margin: 0 0 .2rem 0.8rem;
}
@media (min-width: 751px) {
  a:hover .icon-arrow {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23E50012"/></svg>');
  }
}

.icon-arrow-slide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  width: 1.4rem;
  height: 0.9rem;
}

.icon-arrow-slide i {
  display: block;
  flex-shrink: 0;
  width: 1.4rem;
  height: 0.9rem;
  background: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23E50012"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  transition: transform .65s var(--transition-2);
}

a[target] .icon-arrow-slide {
  transform: rotate(-45deg);
}
@media (min-width: 751px) {
  .icon-arrow-slide i:first-child {
    transform: translateX(-100%);
    transition-delay: 1s;
    transition: transform .65s var(--transition-2);
  }

  .icon-arrow-slide i:last-child {
    transition-delay: 0s;
  }

  a:hover .icon-arrow-slide i:first-child {
    transform: translateX(100%);
    transition-delay: 0s;
  }

  a:hover .icon-arrow-slide i:last-child {
    transform: translateX(100%);
    transition-delay: .1s;
  }
}
.icon-button-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 9rem;
  height: 3.3rem;
  background: var(--accent-color);
  border-radius: 4px;
  padding: 0 1.6rem;
}

.icon-button-arrow span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  width: 1.7rem;
  height: 1.1rem;
}

.icon-button-arrow i {
  display: block;
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.1rem;
  background: url('data:image/svg+xml;charset=utf-8,<svg width="17" height="11" viewBox="0 0 17 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.25634 11C12.9225 5.91613 17 5.5 17 5.5C13.1137 5.5 8.25634 1.04267e-07 8.25634 1.04267e-07C8.25634 1.04267e-07 9.78688 2.51866 10.1316 4.69416L5.59774e-08 4.69416L7.56534e-08 6.34417L10.1254 6.34416C9.76897 8.51081 8.25634 11 8.25634 11Z" fill="%23F4F4F4"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  transition: transform .65s var(--transition-2), opacity .65s var(--transition-2);
}

.icon-button-arrow.-red i {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg width="17" height="11" viewBox="0 0 17 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.25634 11C12.9225 5.91613 17 5.5 17 5.5C13.1137 5.5 8.25634 1.04267e-07 8.25634 1.04267e-07C8.25634 1.04267e-07 9.78688 2.51866 10.1316 4.69416L5.59774e-08 4.69416L7.56534e-08 6.34417L10.1254 6.34416C9.76897 8.51081 8.25634 11 8.25634 11Z" fill="%23E50012"/></svg>') no-repeat center center;
}

a[target] .icon-button-arrow > span {
  transform: rotate(-45deg);
}
@media (min-width: 751px) {
  .icon-button-arrow i:first-child {
    transform: translateX(-100%);
    transition-delay: 1s;
    transition: transform .65s var(--transition-2), opacity .65s var(--transition-2);
  }

  .icon-button-arrow i:last-child {
    transition-delay: 0s;
  }

  a:hover .icon-button-arrow i:first-child,
  button:hover .icon-button-arrow i:first-child {
    transform: translateX(100%);
    transition-delay: 0s;
  }

  a:hover .icon-button-arrow i:last-child,
  button:hover .icon-button-arrow i:last-child {
    transform: translateX(100%);
    opacity: 0;
    transition-delay: .1s;
  }

}

@media (max-width: 750px) {
  .icon-button-arrow {
    height: 3.1rem;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-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;
}
.link {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-variation-settings: "wght" 600;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

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

.link.-end .link__text {
  align-items: flex-end;
}

.link.-center {
  justify-content: center;
}

.link small {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

@media (min-width: 751px) {
  .link__text {
    transition: opacity .3s;
  }
  .link:hover .link__text {
    opacity: .7;
  }
}

@media (max-width: 750px) {
  .link {
    font-size: 2.2rem;
  }
  .link.-sp-end {
    flex-direction: row-reverse;
    text-align: right;
  }
}
.line {
  margin: 0;
  border-color: #303030;
}
/* Fields */

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

.hs-form-field > label {
  margin-bottom: .2rem;
}

/* Labels */

form label {
  display: block;
  font-size: clamp(16px,1.8rem,18px);
  font-weight: 700;
  line-height: 1.7;
}

fieldset:has(textarea) label {
  margin: 0 0 1.3rem;
}

@media (max-width: 750px) {
  form label {
    font-size: 1.6rem;
    margin: 0;
  }
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: clamp(14px,1.6rem,16px);
  line-height: 1.7;
}
@media (max-width: 750px) {
  form legend {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* Inputs */

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: block;
  font-size: clamp(16px,1.8rem,18px);
  line-height: 1.8;
  padding: clamp(7px,.8rem,8px) clamp(10px,1.2rem, 12px);
  width: 100%;
  background: none;
  border: none;
  border-bottom: solid 1px var(--color-gray);
}

form select {
  padding: 1.3rem 1.2rem;
}

form textarea {
  resize: vertical;
  border: solid 1px var(--color-gray);
  padding: 1.2rem 2rem;
  height: 25rem;
}

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

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fbfbfb inset;
}

@media (max-width: 750px) {
  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 {
    padding: .8rem 1.2rem;
  }
}

.is-confirm form input[type=text],
.is-confirm form input[type=search],
.is-confirm form input[type=email],
.is-confirm form input[type=password],
.is-confirm form input[type=tel],
.is-confirm form input[type=number],
.is-confirm form input[type=file],
.is-confirm form select,
.is-confirm form textarea {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: clamp(18px,2rem,20px);
  pointer-events: none;
  appearance: none;
  border-width: 1px;
}
.is-confirm form select {
  padding: .6rem 0 1.8rem;
}

.is-confirm .text-confirm {
  padding: 0 0 2rem;
  height: auto;
  border: none;
  border-bottom: solid 1px var(--color-gray);
  font-size: clamp(16px,1.8rem,18px);
  line-height: 1.7;
}

.is-confirm .hs-form-radio:not(:has(input:checked)) {
  display: none;
}

.is-confirm input[type=radio] + span {
  padding: 0;
}

.is-confirm input[type=radio] + span::before,
.is-confirm input[type=radio] + span::after,
.is-confirm input[type=radio]:checked + span::after {
  display: none;
}

@media (max-width: 750px) {
  .is-confirm form input[type=text],
  .is-confirm form input[type=search],
  .is-confirm form input[type=email],
  .is-confirm form input[type=password],
  .is-confirm form input[type=tel],
  .is-confirm form input[type=number],
  .is-confirm form input[type=file],
  .is-confirm form select,
  .is-confirm form textarea {
    font-size: 1.6rem;
    padding-bottom: 2rem;
  }
  .is-confirm form select {
    padding: .6rem 0 1.8rem;
  }

  .is-confirm .text-confirm {
    height: auto;
    border: none;
    border-bottom: solid 1px var(--color-gray);
    font-size: 1.6rem;
  }

}

/* Inputs - checkbox/radio */

form .inputs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 4.5rem;
  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] {
  display: none;
}

form input[type=checkbox] + span,
form input[type=radio] + span {
  display: inline-block;
  margin: 0 !important;
  padding: 0 0 0 clamp(27px,3.0rem,30px);
  position: relative;
}

form input[type=checkbox] + span::before,
form input[type=radio] + span::before {
  content: "";
  display: block;
  width: clamp(18px,2rem,20px);
  height: clamp(18px,2rem,20px);
  border: solid 1px var(--color-gray);
  border-radius: .4rem;
  position: absolute;
  left: 0;
  top: 3px;
}

form input[type=checkbox] + span::after {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  border-left: solid 3px var(--color-gray);
  border-bottom: solid 3px var(--color-gray);
  opacity: 0;
  position: absolute;
  top: 5px;
  left: 3px;
  transform: rotate(-45deg);
}

form input[type=checkbox]:checked + span::after {
  opacity: 1;
}

form input[type=radio] + span::before {
  width: clamp(23px,2.5rem,25px);
  height: clamp(23px,2.5rem,25px);
  border-radius: 50%;
  top: .1rem;
}

form input[type=radio] + span::after {
  content: "";
  display: block;
  width: clamp(15px,1.7rem,17px);
  height: clamp(15px,1.7rem,17px);
  left: 4px;
  opacity: 0;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 5px;
}

form input[type=radio]:checked + span::after {
  opacity: 1;
}

@media (max-width: 750px) {
  form input[type=checkbox] + span {
    padding: 0 0 0 3.0rem;
  }
  form input[type=checkbox] + span::before {
    width: 2rem;
    height: 2rem;
  }
  form input[type=checkbox] + span::after {
    width: 1.2rem;
    height: 1rem;
    border-left: solid .3rem var(--color-gray);
    border-bottom: solid .3rem var(--color-gray);
    top: .5rem;
    left: .3rem;
  }
  form input[type=radio] + span {
    padding: 0 0 0 3.7rem;
  }
  form input[type=radio] + span::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  form input[type=radio] + span::after {
    width: 1.7rem;
    height: 1.7rem;
    left: .4rem;
    top: .5rem;
  }
}

.hs_contact_sales > label,
.hs_contact_detail > label {
  font-size: clamp(21px,2.4rem,24px);
  line-height: 1.7;
  position: relative;
  margin: 0 0 3rem;
}

.hs_contact_sales > label::before,
.hs_contact_detail > label::before {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 1px;
  position: absolute;
  left: -36px;
  top: 14px;
}

.form fieldset:has(.hs_contact_sales),
.form fieldset:has(.hs_contact_detail) {
  margin-bottom: clamp(50px,5.6rem,56px) !important;
}

@media (max-width: 750px) {
  .hs_contact_sales > label,
  .hs_contact_detail > label {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    font-size: 2.0rem;
    margin: 0 0 2.5rem;
  }

  .hs_contact_sales > label::before,
  .hs_contact_detail > label::before {
    content: "";
    display: block;
    width: 1.2rem;
    height: .4rem;
    position: static;
  }

  .form fieldset:has(.hs_contact_sales),
  .form fieldset:has(.hs_contact_detail) {
    margin-bottom: 5.0rem !important;
  }
}

/* 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: clamp(16px,1.8rem,18px);
  line-height: 1.7;
}

form .hs-richtext a {
  text-decoration: underline;
}

@media (min-width: 751px) {
  form .hs-richtext p {
    margin: 0 0 2rem;
  }
}

@media (max-width: 750px) {
  form .hs-richtext,
  form .hs-richtext p {
    font-size: 1.6rem;
  }
}

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: 0 !important;
}

/* Validation */

.hs-form-required {
  color: var(--color-black);
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

.is-confirm .hs-form-required {
  display: none;
}

/* Submit button */
.actions:has(.hs-button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  cursor: pointer;
}
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  padding: 0;
  border: none;
  background: none;
  font-size: 2.0rem;
  font-weight: 700;
}

@media (min-width: 751px) {
  .actions:has(.hs-button) .icon-button-arrow i:first-child {
    transform: translateX(-100%);
    transition-delay: 1s;
    transition: transform .65s var(--transition-2), opacity .65s var(--transition-2);
  }

  .actions:has(.hs-button) .icon-button-arrow i:last-child {
    transition-delay: 0s;
  }

  .actions:has(.hs-button):hover .icon-button-arrow i:first-child {
    transform: translateX(100%);
    transition-delay: 0s;
  }

  .actions:has(.hs-button):hover .icon-button-arrow i:last-child {
    transform: translateX(100%);
    opacity: 0;
    transition-delay: .1s;
  }

}

@media (max-width: 750px) {
  .actions:has(.hs-button) {
    gap: 1.6rem;
  }
  .actions:has(.hs-button) .icon-button-arrow {
    width: 8rem;
  }
  form input[type=submit],
  form .hs-button {
    font-size: 1.5rem;
  }
}

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



.body-wrapper [aria-hidden="true"] {
  display: none;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.parallax-image {
  position: relative;
  overflow: hidden;
}

.parallax-image::before {
  content: "";
  display: block;
}

.parallax-image img {
  /* transition: transform .3s; */
  position: absolute;
  top: 0;
  left: 0;
}

.video {
  overflow: hidden;
}

.video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.video iframe {
  min-width: 100%;
  min-height: 100%;
}

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

.global-menu {
  display: flex;
  flex-wrap: wrap;
}

.global-menu dl {
  margin: 0;
}

.global-menu dl dt {
  color: var(--color-gray);
  font-variation-settings: "wght" 600;
}

.global-menu dl dd {
  margin: 0;
}

.global-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.global-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
}
/* 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 {
  padding: 3rem 4.2rem;
  position: absolute;
  width: 100%;
  z-index: 998;
}

.header__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__logo {
  width: 17.8rem;
}

.header__list {
  display: flex;
  margin: 0 14.7rem 0.6rem auto;
  gap: 4.6rem;
  list-style-type: none;
}

.header__list li a {
  display: flex;
  align-items: center;
  color: var(--color-black);
  font-weight: 700;
  text-decoration: none;
}

.header__list li a[target] .icon-arrow {
  margin-bottom: 0.5rem;
}

.header__sub-list {
  margin: 0 0 0 -2.6rem;
  padding: 2.5rem 0 0;
  position: absolute;
  width: 17.8rem;
  opacity: 0;
  transform: scale(0.9);
  visibility: hidden;
  transition: .2s;
}

.header__sub-list ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 3rem 2.6rem;
  background: var(--color-white);
}

.header__sub-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.header__menu {
  width: 8rem;
  height: 3.1rem;
  background: var(--accent-color);
  border-radius: 4px;
  border: none;
  padding: 0 1.6rem;
  margin: 0 0 0 6.6rem;
  z-index: 1;
  position: fixed;
  top: 4.2rem;
  right: 4.2rem;
}

.header__menu-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.header__menu .menu-open {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  gap: .3rem;
  width: 1.8rem;
  margin: 0 0 0 auto;
  transition: .3s;
}

.header__menu-icon {
  display: block;
}

.menu-open .header__menu-icon span {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: .3rem;
  background: url('data:image/svg+xml;charset=utf-8,<svg width="15" height="3" viewBox="0 0 15 3" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="1.5" cy="1.5" r="1.5" fill="%23F4F4F4"/><circle cx="7.5" cy="1.5" r="1.5" fill="%23F4F4F4"/><circle cx="13.5" cy="1.5" r="1.5" fill="%23F4F4F4"/></svg>') no-repeat center center;
  background-size: 100% 100%;
}

.header__menu .menu-close {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  line-height: 0;
  transition: .3s;
}
.header__menu .menu-close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.header__menu.is-open .menu-open {
  opacity: 0;
  visibility: hidden;
}

.header__menu.is-open .menu-close {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 751px) {
  a.header__logo:hover {
    opacity: 1;
  }
  .header__list li span {
    display: block;
    position: relative;
  }
  .header__list li span::after {
    content: "";
    height: 1px;
    inset: 100% 0 auto;
    transform: scale(0, 1);
    transform-origin: right center;
    background: var(--color-black);
    transition-duration: .8s;
    transition-property: background-color, transform, opacity;
    transition-timing-function: cubic-bezier(.16,1,.3,1);
    position: absolute;
    top: calc(100% - .2rem);
  }
  .header__list li a:hover {
    opacity: 1;
  }
  .header__list li:hover > a > span::after,
  .header__list li a.is-active > span::after {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  .header__menu:hover .header__menu-icon:first-child {
    transform: translateX(100%);
    transition-delay: 0s;
  }
  .header__menu:hover .header__menu-icon:last-child {
    transform: translateX(100%);
    transition-delay: .1s;
  }
  .header__menu-icon {
    transition: transform .65s var(--transition-2);
  }
  .header__menu-icon:first-child {
    transform: translateX(-100%);
    transition-delay: 1s;
    transition: transform .65s var(--transition-2);
  }
  .header__menu-icon:last-child {
    transition-delay: 0s;
  }
  
  .header__sub-list li a:hover span::after {
    transform: scale(1, 1);
    transform-origin: left center;
  }

  .header__list li.toggle:hover .header__sub-list {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .header__list li.toggle:hover .header__sub-list li {
    transform: none;
    opacity: 1;
  }

  .header__sub-list li {
    transition: .4s var(--transition-1);
    will-change: opacity;
    transform: translateY(1rem);
    opacity: 0;
  }
  .header__sub-list li:nth-child(2) {
    transition-delay: 0.1s;
  }
  
  .header__sub-list li:nth-child(3) {
    transition-delay: 0.2s;
  }
  
  .header__sub-list li:nth-child(4) {
    transition-delay: 0.3s;
  }
  .menu-close svg .svg-elem-1 {
    stroke-dashoffset: 0;
  }
  .menu-close svg .svg-elem-2 {
    stroke-dashoffset: 0;
  }
  .header__menu:hover .menu-close svg .svg-elem-1 {
    stroke-dashoffset: 1.39999980926513674rem;
    animation: animate-svg-stroke-1 .9s var(--transition-3) 0s both;
  }
  .header__menu:hover .menu-close svg .svg-elem-2 {
    stroke-dashoffset: 1.3999998092651367rem;
    animation: animate-svg-stroke-2 .9s var(--transition-3) 0.4s both;
  }
}

@media (max-width: 750px) {
  .header {
    padding: 2rem;
  }
  .header__container {
    justify-content: space-between;
  }
  .header__logo {
    width: 16.2rem;
  }
  .header__list {
    display: none;
  }
  .header__menu {
    top: 2.9rem;
    right: 2rem;
  }
}

.drawer {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.16,1,.3,1) 0.2s, opacity 0s .8s, visibility 0s .8s;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.drawer.is-open {
  transform: none;
  overflow: auto;
  overscroll-behavior: contain;
  opacity: 1;
  visibility: visible;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1) 0.2s;
}

[data-fade-in] {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s var(--transition-1) .4s;
}

.is-open [data-fade-in] {
  opacity: 1;
  transform: none;
}

.drawer__inner {
  display: flex;
  gap: 6.8rem 5.014749262%;
  padding: 20.5rem 4.2rem 4.2rem;
  /* min-height: calc(100% + 1px); */
  min-height: 100%;
}

.drawer__motion {
  width: 45.722713864%;
  position: relative;
  overflow: hidden;
}

.drawer__motion .video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.drawer__contents {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer__nav {
  gap: 40px 5.988023952%;
  margin: 0 0 40px;
}

.drawer__nav dl {
  margin: 0;
  width: 19rem;
}

.drawer__nav dl dt {
  font-size: 2.0rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 4rem;
}

.drawer__nav dl dd {
  margin: 0;
}

.drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.drawer__menu li a {
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.drawer__sub-menu {
  margin-top: .8rem !important;
}

.drawer__sub-menu li a {
  font-weight: 400;
  color: #afafaf;
}

.drawer__copy {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin: auto 0 20px;
}

.drawer__copy-en {
  font-variation-settings: "wght" 600;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #AFAFAF;
  margin: 0 0 38px;
}

.drawer__logo {
  width: 13rem;
  margin: 0 0 1.2rem;
}

.drawer__copyright {
  font-variation-settings: "wght" 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--color-gray);
  margin: 0;
  padding: 0 5.5rem 0 0;
  text-align: right;
}

@media (min-width: 751px) {
  body.is-open {
    position: fixed;
    left: 0;
    width: 100%;
    overflow-y: scroll;
  }
  .drawer__menu li a {
    transition: opacity .3s;
  }
  .drawer__menu li a:hover {
    opacity: 0.6;
  }
  .drawer__menu li a:hover .icon-arrow {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23757575"/></svg>');
  }
}

@media (max-width: 750px) {

  .drawer {
    width: 100%;
    overflow: auto;
  }

  .drawer__inner {
    padding: 13.2rem 4.5rem 4.5rem;
  }
  
  .drawer__motion {
    display: none;
  }
  
  .drawer__nav {
    flex-wrap: wrap;
    gap: 5rem 4.6rem;
    margin: 0 0 8.6rem;
  }
  
  .drawer__nav dl {
    width: auto;
  }

  .drawer__nav dl:nth-child(2) {
    order: 1;
  }
  
  .drawer__nav dl dt {
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
  
  
  .drawer__menu li a {
    font-size: 1.8rem;
  }
  
  .drawer__copy {
    font-size: 2.8rem;
    margin: 0 0 1.4rem;
  }
  
  .drawer__copy-en {
    font-size: 1.1rem;
    margin: 0 0 3rem;
  }

  .drawer__logo {
    width: 11rem;
    margin: 0;
  }
  
  .drawer__copyright {
    display: none;
  }
}


@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dasharray: 1.3999998092651367rem;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dasharray: 1.3999998092651367rem;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dasharray: 1.3999998092651367rem;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dasharray: 1.3999998092651367rem;
  }

  100% {
    stroke-dashoffset: 0;
  }
}
.footer {
  padding: 4.2rem;
  background: var(--color-black);
}

.footer__next {
  display: flex;
  gap: 4.2rem;
  color: var(--color-white);
  padding: 0 0 12rem;
}

.footer__next a {
  color: var(--color-white);
}

.footer__video {
  width: 49.262536873%;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

.footer__video .video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 108.8rem;
  height: 100%;
  object-fit: cover;
}

.footer__video::before {
  content: "";
  display: block;
  padding-top: 122.155688622%;
}

.footer__next-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 7rem 0;
}

.footer__copy {
  font-size: 4.5rem;
  line-height: 1.22;
  margin: 0 0 3rem;
  color: #F4F4F4;
}

.footer__copy-en {
  font-variation-settings: "wght" 600;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #AFAFAF;
  margin: 0;
}

.footer__next-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4rem;
}

.footer__next-area > span {
  font-variation-settings: "wght" 600;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #AFAFAF;
}

.footer__next-link {
  font-variation-settings: "wght" 500;
  font-size: 11rem;
  letter-spacing: -0.06em;
  line-height: 0.9;
  position: relative;
}

.footer__next-link::before,
.footer__next-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0s;
}

.footer__next-link::before {
  transform: scaleX(1);
  transform-origin: left;
}
.footer__next-link::after {
  transform: scaleX(0);
  transform-origin: right;
}

.footer__next-area.is-active .footer__next-link::before {
  animation: slideIn1 .9s var(--transition-3);
  transform-origin: right;
}

.footer__next-area.is-active .footer__next-link::after {
  animation: slideIn2 .9s var(--transition-3) 0.2s;
  transform-origin: left;
}

@keyframes slideIn1 {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes slideIn2 {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.footer__container {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}

.footer__content {
  width: 50%;
  padding: 0 0 0 1rem;
  margin: 0 0 0 auto;
}

.footer__nav {
  gap: 9.3rem 4rem;
  margin: 0 0 13rem;
}

.footer__nav dl {
  /* width: 28.443114772%; */
  width: 19rem;
}

.footer__nav dl dt {
  font-variation-settings: "wght" 600;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__menu li {
  line-height: 1.3;
}

.footer__menu li a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__menu li a span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-gray-variable1);
  margin: .3rem 0 0;
}

.footer__sub-menu {
  margin-top: .8rem !important;
}

.footer__sub-menu li a {
  font-weight: 500;
  line-height: 1.5;
  color: #f4f4f4;
}

.footer__sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3rem;
}

.footer__sub-nav li a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-gray-variable1);
  text-decoration: none;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.footer__logo {
  width: 22.7rem;
  line-height: 0;
}

.footer__logo img {
  width: 100%;
}

.footer__copyright {
  font-variation-settings: "wght" 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--color-gray);
  margin: 0;
}

@media (min-width: 751px) {
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 85rem;
  }
  .footer__copy.-short {
    font-size: 4.0rem;
    margin: 0 0 2rem;
  }

  .footer__copy.-short + .footer__copy-en {
    font-size: 1.2rem;
  }

  .footer__next-link:hover:before {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .9s var(--transition-3);
    transition-delay: 0s;
  }
  .footer__next-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .9s var(--transition-3);
    transition-delay: .2s;
  }
  .footer__menu li a,
  .footer__sub-nav li a {
    transition: opacity 0.3s
  }
  .footer__menu li a:hover,
  .footer__sub-nav li a:hover {
    opacity: 0.6;
  }

  .footer__menu li a:hover .icon-arrow {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23757575"/></svg>');
  }
}

@media (max-width: 750px) {
  .footer {
    padding: 2rem;
  }

  .footer__next {
    flex-direction: column;
    gap: 2rem;
    padding: 0 0 10rem;
    margin: 0 0 2rem;
    border-bottom: solid 1px var(--color-gray);
  }

  .footer__video {
    width: 23rem;
  }

  .footer__next-text {
    padding: 0;
    gap: 7rem;
  }

  .footer__copy {
    font-size: 3.0rem;
    margin: 0 0 1.8rem;
  }

  .footer__copy-en {
    font-size: 1.2rem;
  }

  .footer__next-area {
    gap: 2rem;
  }

  .footer__next-area > span {
    font-size: 1.4rem;
  }

  .footer__next-link {
    font-size: 6.6rem;
    margin: 0 0 1rem;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8rem;
  }

  .footer__container:first-child {
    padding-top: 5rem;
  }
  
  .footer__content {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .footer__nav {
    justify-content: space-between;
    gap: 4rem 0;
    margin: 0 0 8rem;
  }
  
  .footer__nav dl {
    width: 48.571428571%;
  }

  .footer__nav dl:nth-child(2) {
    order: 2;
  }

  .footer__nav dl:nth-child(3) {
    order: 4;
  }

  .footer__nav dl:nth-child(4) {
    order: 1;
  }

  .footer__nav dl:nth-child(5) {
    order: 3;
  }

  .footer__nav dl:nth-child(6) {
    order: 5;
  }
  
  .footer__nav dl dt {
    font-size: 1.3rem;
    margin: 0 0 2rem;
  }
  
  .footer__menu {
  }
  
  .footer__menu li a {
    font-size: 1.4rem;
  }

  .footer__menu li a.-fs-md {
    font-size: 1.6rem;
  }
  
  .footer__menu li a span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-gray-variable1);
  }
  
  .footer__sub-menu {
    margin-top: 1rem !important;
  }
  
  .footer__sub-nav li a {
    font-size: 1.3rem;
    line-height: 2;
  }

  .footer__copy-area {
    margin-bottom: -2rem;
  }
  
  .footer__info {
    gap: 1.4rem;
    margin-top: 5rem;
  }
  
  .footer__logo {
    width: 19.4rem;
  }
  
  .footer__copyright {
    font-size: 1.2rem;
  }
}
.hero__scroll {
  display: flex;
  align-items: center;
  width: 9.8rem;
  overflow: hidden;
}

.hero__scroll p {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-variation-settings: "wght" 600;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  gap: 1.0rem;
  margin: 0;
  animation: scroll 3s infinite linear;
  will-change: transform;
  padding: 0 5px;
}

.hero__scroll span {
  display: inline-block;
  flex-shrink: 0;
  width: 1.1rem;
  height: .7rem;
  background: url('data:image/svg+xml;charset=utf-8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.79934 9C10.6421 4.84047 14 4.5 14 4.5C10.7995 4.5 6.79934 8.5867e-08 6.79934 8.5867e-08C6.79934 8.5867e-08 8.06044 2.0618 8.34389 3.84208L4.58163e-08 3.84208L6.19149e-08 5.19208L8.33834 5.19208C8.04438 6.96446 6.79934 9 6.79934 9Z" fill="%23E50012"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  transition: background-image .3s;
  transform: rotate(90deg);
  margin: 0 0 .3rem;
}

@keyframes scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 750px) {
  .hero__scroll {
    width: 8.5rem;
  }
  .hero__scroll p {
    font-size: 1.6rem;
  }
}


/* 下層ページ ヒーローエリア */
.pages-hero {
  position: relative;
}

.pages-hero__info {
  display: flex;
  justify-content: flex-end;
  margin: 2rem 0 0;
  padding: 0 0 1.6rem;
  border-bottom: solid 1px #E1E1E1;
}

@media (max-width: 750px) {
  .pages-hero__info {
    margin: 3rem 0 0;
    padding: 0 0 1rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-variation-settings: "wght" 500;
  font-weight: 700;
}

.breadcrumb li:not(li:has(a)) {
  position: relative;
}
.breadcrumb li:not(li:has(a)):after {
  content: "";
  display: inline-block;
  border-bottom: solid 1px #303030;
  width: calc(100% - 2rem);
  position: absolute;
  right: 0;
  bottom: .2rem;
}

.breadcrumb li a {
  font-variation-settings: "wght" 500;
  font-weight: 700;
}

.breadcrumb li + li::before {
  content: "";
  display: block;
  width: .8rem;
  height: .2rem;
  background: var(--accent-color);
  margin: 0 0 .4rem;
}

.breadcrumb li:last-child span{
  max-width: 40rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .breadcrumb {
    gap: 1.0rem;
    width: 100%;
    justify-content: flex-end;
  }
  .breadcrumb li {
    gap: 1rem;
  }
  .breadcrumb li:last-child {
    flex-shrink: 1;
    overflow: hidden;
  }
  .breadcrumb li:last-child span{
    width: 100%;
  }
}
/* 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%;
}
.infinite-slider {
  font-variation-settings: "wght" 500;
  font-size: 11rem;
  letter-spacing: -0.05em;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
  background: #fbfbfb;
  width: 100%;
}

.infinite-slide {
  display: flex;
  white-space: nowrap;
}

.infinite-slide:last-child {
  justify-content: flex-end;
}

.infinite-slide div {
  will-change: transform;
  backface-visibility: hidden;
  padding: 0 1rem;
}

.infinite-slide:first-child div {
  animation: slider1 60s infinite linear;
}
.infinite-slide:last-child div {
  animation: slider2 60s infinite linear;
}

.infinite-slider span {
  display: inline-flex;
  vertical-align: middle;
  width: 20rem;
  margin: 0 1rem 1rem;
}

@media (max-width: 750px) {
  .infinite-slider {
    font-size: 6.6rem;
  }
  .infinite-slider span {
    width: 10rem;
  }
  .infinite-slide div {
    padding: 0 .5rem;
  }
}

@keyframes slider1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slider2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* Recruit */
.recruit {
  padding: 24rem 0 25rem;
  position: relative;
  background: #fbfbfb;
}

.recruit .inner {
  position: relative;
}

.recruit__contents {
  max-width: 35.2rem;
  padding: 4.6rem 0 4.7rem;
  margin: 0 auto;
}

.recruit .headline {
  margin: 0 0 5rem;
}

.recruit .headline span {
  justify-content: center;
}

.recruit__copy {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 4rem;
}

.recruit__text {
  font-size: 1.8rem;
  line-height: 1.7;
}

.recruit__link {
  display: flex;
  justify-content: center;
  margin: 5rem 0 0;
}

.recruit__images-list li {
  position: absolute;
}

.recruit__images-list li:nth-child(1) {
  /* width: 324px; */
  width: 23.893805309%;
  top: 12.2rem;
  left: 0;
}

.recruit__images-list li:nth-child(1)::before {
  padding-top: 137.962962962%;
}

.recruit__images-list li:nth-child(2) {
  /* width: 209px; */
  width: 15.412979351%;
  top: 0;
  right: 11.5rem;
}

.recruit__images-list li:nth-child(2)::before {
  padding-top: 73.684210526%;
}

.recruit__images-list li:nth-child(3) {
  /* width: 229px; */
  width: 16.887905604%;
  top: 14rem;
  right: 0;
}

.recruit__images-list li:nth-child(3)::before {
  padding-top: 119.650655021%;
}

.recruit__images-list li:nth-child(4) {
  width: 15.412979351%;
  bottom: 0;
  right: 16.2rem;
}

.recruit__images-list li:nth-child(4)::before {
  padding-top: 73.6884210526%;
}

@media (min-width: 751px) {
  .recruit .headline span {
    margin: 0 0 5.5rem;
  }
}

@media (max-width: 750px) {
  .recruit {
    padding: 10rem 0 12rem;
  }
  .recruit__contents {
    max-width: inherit;
    margin: 0 0 5rem;
    padding: 0;
  }
  .recruit .headline {
    text-align: center;
    margin: 0 0 3rem;
  }
  .recruit__copy {
    font-size: 3.0rem;
    margin: 0 0 2rem;
  }
  .recruit__text {
    font-size: 1.6rem;
    max-width: 32.6rem;
    margin: 0 auto;
  }
  .recruit__link {
    margin: 3rem 0 0;
  }
  .recruit__images-list {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 3.5rem;
    margin: 0 0 0 1.5rem;
  }
  .recruit__images-list li {
    position: relative;
    display: none;
  }
  .recruit__images-list li:nth-child(3) {
    display: block;
    width: 41.791044776%;
    right: 0;
    top: 0;
    margin: 0 0 2.9rem;
  }
  .recruit__images-list li:last-child {
    display: block;
    width: 38.805970149%;
  }
  .recruit__images-list li:last-child::before {
    padding-top: 73.846153846%;
  }
}

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