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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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 {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

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

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

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

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

/* base */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:where([hidden]:not([hidden='until-found'])) {
	display: none !important;
}

:where(html) {
	-webkit-text-size-adjust: none;
	color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
	:where(html) {
		block-size: 100%;
	}
}

@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
}

:where(body) {
	block-size: 100%;
	block-size: 100dvb;
	line-height: 1.5;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
}

:where(textarea) {
	resize: vertical;
	resize: block;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
	cursor: pointer;
}

:where(:disabled) {
	cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
	cursor: not-allowed;
}

:where(button) {
	border-style: solid;
}

:where(a) {
	text-underline-offset: 0.2ex;
}

:where(ul, ol) {
	list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

:where(img, picture, svg) {
	max-inline-size: 100%;
	block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
}

:where(hr) {
	border: none;
	border-block-start: 1px solid;
	color: inherit;
	block-size: 0;
	overflow: visible;
}

:where(:focus-visible) {
	outline: 2px solid var(--focus-color, Highlight);
	outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;
}
/*! 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * 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
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
@charset "UTF-8";
/*--------------------------------------------------
 Always use
--------------------------------------------------*/
/*
  ----------------
  Hover style
  ----------------
*/
/*
  ----------------
  ユーティリティー
  ----------------
*/
.container {
  position: relative;
}

@media all and (min-width: 768px) {
  .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 50px;
  }
}

@media all and (max-width: 767px) {
  .container {
    padding: 0 5vmin;
  }
}

.u-lower-page {
  padding-top: 60px;
}

@media all and (min-width: 1024px) {
  .u-lower-page {
    padding-top: 70px;
  }
}

/*
  ----------------
  レスポンシブ用のユティリティー
  ----------------
*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*--------------------------------------------------
 Base
--------------------------------------------------*/
/*
  ----------------
  Base styles
  ----------------
  */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media all and (min-width: 768px) {
  html {
    overflow-x: scroll;
  }
}

body {
  background-color: #fff;
  position: relative;
}

.site-wrapper {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media all and (min-width: 768px) {
  .site-wrapper {
    /*min-width: 1000px;*/
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-x: hidden;
}

@media all and (min-width: 768px) {
  main {
    overflow-x: auto;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

a {
  color: #334252;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  a {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
  }
  a:hover {
    opacity: 0.8;
  }
}

a::before, a::after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

button {
  border: none;
  background-color: transparent;
}

figure {
  margin: 0;
}

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

ul {
  margin: 0;
}

@media all and (max-width: 767px) {
  .container {
    padding-left: 5vmin;
    padding-right: 5vmin;
  }
}

/*
  ----------------
  Base font settings
  ----------------
*/
body {
  background-color: #f6f6f6;
  color: #334252;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif, 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

@media all and (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
}
@charset "UTF-8";
/*--------------------------------------------------
 Always use
--------------------------------------------------*/
/*
  ----------------
  Hover style
  ----------------
*/
/*----------------
  Polka dot| Back ground
----------------*/
/*
  ----------------
  ユーティリティー
  ----------------
*/
.container {
  position: relative;
}

@media all and (min-width: 768px) {
  .u-container {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 10px;
  }
}

/*
  ----------------
  レスポンシブ用のユティリティー
  ----------------
*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*--------------------------------------------------
 Modules
--------------------------------------------------*/

/*----------------
  Heading | Modules
----------------*/
.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-catalog__wrap .c-heading {
  padding: 0 15px;
}

.c-heading__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media all and (min-width: 768px) {
  .c-heading__title {
    font-size: 30px;
    letter-spacing: 0.02em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media all and (min-width: 768px) {
  .top-results .c-heading__title {
    line-height: 1.5;
  }
}

@media all and (min-width: 768px) {
  .top-problem .c-heading__title {
    padding-right: 24px;
  }
}

.c-heading__title.--nowrap {
  font-size: 30px;
}

@media all and (min-width: 768px) {
  .c-heading__title.--nowrap {
    font-size: 44px;
  }
}

.c-heading__title.--simple {
  font-size: 30px;
  line-height: 1.5;
}

@media all and (min-width: 768px) {
  .c-heading__title.--simple {
    font-size: 40px;
  }
}

.c-heading__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-heading__title-regular {
  font-size: 28px;
}

@media all and (min-width: 768px) {
  .c-heading__title-regular {
    font-size: 30px;
  }
}

.c-heading__title-medium {
  font-size: 26px;
}

@media all and (min-width: 768px) {
  .c-heading__title-medium {
    font-size: 30px;
    letter-spacing: 0.02em;
  }
}

.c-heading__title-small {
  font-size: 22px;
}

@media all and (min-width: 768px) {
  .c-heading__title-small {
    font-size: 30px;
    letter-spacing: 0.02em;
  }
}

.c-heading__logo {
  display: inline-block;
  margin-right: 7px;
  width: 150px;
}

@media all and (min-width: 768px) {
  .c-heading__logo {
    margin-inline: 12px;
    width: 250px;
  }
}

@media all and (max-width: 767px) {
  .--nowrap .c-heading__logo {
    padding-bottom: 6px;
  }
}

@media all and (min-width: 768px) {
  .top-results .c-heading__logo,
  .top-reason .c-heading__logo,
  .top-feature .c-heading__logo {
    margin: 0;
  }
}

.c-heading__large {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-heading__large {
    font-size: 44px;
    letter-spacing: 0.02em;
  }
}

.c-heading__text {
  font-size: 15px;
  font-weight: 400;
  margin-top: 20px;
  text-align: center;
  /* letter-spacing: 0.5px; */
}

@media all and (min-width: 768px) {
  .c-heading__text {
    font-size: 20px;
    margin-top: 20px;
  }
}

/*----------------
 CTA | Common modules
----------------*/
.c-cta {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-nav .c-cta {
  gap: 20px;
}

@media all and (max-width: 1023px) {
  .l-nav .c-cta {
    max-width: 660px;
  }
}

@media all and (max-width: 767px) {
  .c-cta {
    max-width: 450px;
  }
}

@media all and (min-width: 768px) {
  .c-cta {
    width: 660px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
  }
}

.c-cta-fixed {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  -webkit-transition: -webkit-transform .2s ease-in;
  transition: -webkit-transform .2s ease-in;
  -o-transition: transform .2s ease-in;
  transition: transform .2s ease-in;
  transition: transform .2s ease-in, -webkit-transform .2s ease-in;
  z-index: 50;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 9px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.c-cta-fixed.is-show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

@media all and (min-width: 768px) {
  .c-cta-fixed {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    width: 100%;
  }
  .c-cta-fixed .c-button {
    margin: 0;
    width: 320px;
  }
}

/*----------------
 Buttom | Common modules
----------------*/

.c-button {
  background-color: #fff;
  border: 1px solid #fc541c;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  margin-inline: auto;
  position: relative;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  height: 65px;
  max-width: 450px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -o-radial-gradient(#f7f7f7 15%, transparent 24%), -o-radial-gradient(#f7f7f7 15%, transparent 24%);
  background-image: radial-gradient(#f7f7f7 15%, transparent 24%), radial-gradient(#f7f7f7 15%, transparent 24%);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
}

@media all and (max-width: 767px) {
  .c-button {
    width: 345px;
  }
}


@media all and (min-width: 768px) {
  .c-button {
    border-width: 2px;
    height: 70px;
    min-width: 320px;
  }
}

.c-button::before {
  display: block;
  content: '';
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_button_arrow-orange.svg) 50%/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button.--small-black {
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  height: 40px;
  min-width: 200px;
  max-width: 200px;
}

@media all and (min-width: 768px) {
  .c-button.--small-black {
    padding: 9px;
  }
}

.c-button.--small-black::before {
  display: none;
}

.c-button.--white {
  border: 1px solid #334252;
}

@media all and (min-width: 768px) {
  .c-button.--white {
    border-width: 2px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-button.--white-small {
  border: 1px solid #334252;
  height: 55px;
  max-height: 55px;
  width: 280px;
}

@media all and (min-width: 768px) {
  .c-button.--white-small {
    border-width: 2px;
    min-width: 300px;
    width: 300px;
  }
}

.c-button.--black-small {
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  border: none;
  height: 55px;
  max-height: 55px;
  width: 305px;
}

@media all and (min-width: 768px) {
  .c-button.--black-small {
    border-width: 2px;
    min-width: 300px;
    width: 300px;
  }
}

.c-button.--white::before, .c-button.--white-small::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_button_arrow-black.svg) 50%/contain no-repeat;
}

.c-button.--white.--return::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_button_arrow-black-return.svg) 50%/contain no-repeat;
  top: 52%;
  left: 20px;
  right: unset;
}

.c-button.--orange {
  background: -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(76.56%, #f98728), to(#f7b733));
  background: -o-linear-gradient(left, #fc4a1a 0%, #f98728 76.56%, #f7b733 100%);
  background: linear-gradient(90deg, #fc4a1a 0%, #f98728 76.56%, #f7b733 100%);
  border: none;
  padding-bottom: 5px;
}

.c-button.--orange .c-button__text,
.c-button.--orange .c-button__text-small {
  text-shadow: 1px 1px 0px #fa4714, -1px -1px 0px #fa4714, -1px 1px 0px #fa4714, 1px -1px 0px #fa4714, 1px 0px 0px #fa4714, -1px 0px 0px #fa4714, 0px 1px 0px #fa4714, 0px -1px 0px #fa4714;
}

.c-button.--gray {
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .c-button.--gray {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    min-width: 400px;
    width: auto;
    padding: 0 50px 0 30px;
  }
}

@media all and (max-width: 767px) {
  .c-button.--small {
    max-height: 50px;
    height: 50px;
    padding: 16px 0;
    width: calc((100% - 9px)/2);
  }

  /* CTA wrapper の調整のため上書き */
  .c-cta-fixed .hs-cta-wrapper {
    width: calc((100% - 9px)/2);
  }
  .c-cta-fixed .hs-cta-wrapper .c-button {
    max-height: 50px;
    height: 50px;
    padding: 16px 0;
    width: 100%;
  }

  .c-button.--small::before,
  .c-cta-fixed .hs-cta-wrapper .c-button::before {
    display: none;
  }
}

.c-button.--lower-heading, .c-button.--lower-page {
  padding-bottom: 0;
  height: 55px;
  width: 280px;
}

@media all and (min-width: 768px) {
  .c-button.--lower-heading, .c-button.--lower-page {
    height: 60px;
    width: 320px;
  }
}

.c-button.--lower-page {
  width: 100%;
}

@media all and (min-width: 768px) {
  .c-button.--lower-page {
    width: 320px;
  }
}

@media all and (max-width: 767px) {
  .c-button.--lower-heading::before {
    right: 18px;
    height: 13px;
    width: 8px;
  }
}

.c-button.--orange::before,
.c-button.--black-small::before,
.c-button.--gray::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_button_arrow-white.svg) 50%/contain no-repeat;
}

.c-button.--gray::after {
  content: '';
  display: block;
  background-image: -o-radial-gradient(#fff 15%, transparent 24%), -o-radial-gradient(#fff 15%, transparent 24%);
  background-image: radial-gradient(#fff 15%, transparent 24%), radial-gradient(#fff 15%, transparent 24%);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  opacity: 0.05;
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button:hover {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.c-button:active {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.c-button__text {
  color: #fe5d02;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

@media all and (max-width: 767px) {
  .--small .c-button__text,
  /* CTA wrapper の調整のため上書き */
  .c-cta-fixed .hs-cta-wrapper .c-button__text {
    font-size: 16px;
  }
}

.--gray .c-button__text {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

@media all and (min-width: 768px) {
  .--gray .c-button__text {
    font-size: 20px;
  }
}

.--orange .c-button__text,
.--gray .c-button__text {
  color: #fff;
}

.--white .c-button__text {
  color: #334252;
}

.--white-small .c-button__text {
  color: #334252;
  font-size: 16px;
}

@media all and (min-width: 768px) {
  .--white-small .c-button__text {
    font-size: 17px;
  }
}

.--black-small .c-button__text {
  color: #fff;
  font-size: 16px;
}

@media all and (min-width: 768px) {
  .--black-small .c-button__text {
    font-size: 20px;
  }
}

@media all and (max-width: 767px) {
  .--lower-heading .c-button__text {
    font-size: 16px;
  }
}

.c-button__text-small {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/*
  ----------------
   Modules common
  ----------------
*/
/*----------------
  Nav | Navigation menu
----------------*/
.l-nav {
  -webkit-transition: right .3s ease-in-out;
  -o-transition: right .3s ease-in-out;
  transition: right .3s ease-in-out;
}

@media all and (max-width: 1023px) {
  .l-nav {
    background-color: #fff;
    height: 100svh;
    overflow-y: auto;
    width: 100vw;
    z-index: 110;
    position: absolute;
    top: 0;
    right: -100%;
  }
  .is-sp-menu-open .l-nav {
    right: 0;
  }
}

.is-sp-menu-open .l-nav {
  right: 0;
}

.l-nav__header {
  height: 60px;
  padding: 0 10px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (min-width: 1024px) {
  .l-nav__header {
    display: none;
  }
}

.l-nav__logo {
  width: 120px;
}

.l-nav__close {
  width: 40px;
}

.l-nav__body {
  padding: 5px 20px 0;
}

@media all and (min-width: 1024px) {
  .l-nav__body {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

@media all and (max-width: 1023px) {
  .l-nav__item {
    border-bottom: 1px solid #dadada;
  }
}

@media all and (min-width: 1024px) {
  .l-nav__item.--sp-only {
    display: none;
  }
}

@media all and (max-width: 1023px) {
  .l-nav__item.--pc-only {
    display: none;
  }
}

.l-nav__link {
  color: #334252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 0 15px;
  width: 100%;
}

@media all and (min-width: 1024px) {
  .l-nav__link {
    font-size: 15px;
    padding: 0;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
  }
  .top .l-nav__link,
  .lp-page .l-nav__link {
    color: #fff;
  }
  .is-scrolled .l-nav__link {
    color: #334252;
  }
}

.l-nav__link.--button {
  color: #fff;
  text-shadow: 1px 1px 0px #fa4714, -1px -1px 0px #fa4714, -1px 1px 0px #fa4714, 1px -1px 0px #fa4714, 1px 0px 0px #fa4714, -1px 0px 0px #fa4714, 0px 1px 0px #fa4714, 0px -1px 0px #fa4714;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

@media all and (min-width: 1024px) {
  .l-nav__link.--button {
    border-radius: 50px;
    -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
    background: #fff -webkit-gradient(linear, left top, right top, from(#fc4a1a), color-stop(76.56%, #f98728), to(#f7b733));
    background: #fff -o-linear-gradient(left, #fc4a1a 0%, #f98728 76.56%, #f7b733 100%);
    background: #fff linear-gradient(90deg, #fc4a1a 0%, #f98728 76.56%, #f7b733 100%);
    padding: 8px 30px 9px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}

.l-nav__link.--button:hover {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.l-nav__link.--button:active {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.l-nav__cta {
  padding: 30px 15px 0;
}

@media all and (min-width: 1024px) {
  .l-nav__cta {
    display: none;
  }
}

/*----------------
 Header | Common modules
----------------*/
.l-header {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0);
  height: 60px;
  -webkit-transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}

@media all and (min-width: 768px) {
  .l-header {
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  }
}

@media all and (max-width: 1023px) {
  .l-header {
    right: 0;
  }
}

@media all and (min-width: 1024px) {
  .l-header {
    height: 70px;
    min-width: 980px;
    width: 100vw;
  }
}

.top .l-header,
.lp-page .l-header {
  background-color: transparent;
  box-shadow: none;
}

.l-header__wrap {
  height: 60px;
  padding: 0 10px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (min-width: 1024px) {
  .l-header__wrap {
    height: 70px;
    padding: 0 20px 0 30px;
  }
}

.l-header__logo {
  width: 120px;
}

@media all and (min-width: 768px) {
  .l-header__logo {
    max-width: 137px;
    width: 100%;
  }
}

.l-header__logo svg {
  -webkit-transition: fill 0.2s ease-in-out;
  -o-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  fill: #e2041b;
}

.top .l-header__logo svg,
.lp-page .l-header__logo svg {
  fill: #fff;
}

.l-header__button {
  width: 40px;
}

@media all and (min-width: 1024px) {
  .l-header__button {
    display: none;
  }
}

.l-header__button svg {
  fill: #db4242;
  -webkit-transition: fill 0.2s ease-in-out;
  -o-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}

.top .l-header__button svg,
.lp-page .l-header__button svg {
  fill: #fff;
}

.is-scrolled .l-header {
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .is-scrolled.top .l-header,
  .is-scrolled.lp-page .l-header {
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  }
}

.is-scrolled .l-header .l-header__logo svg {
  fill: #e2041b;
}

.is-scrolled .l-header .l-header__button svg {
  fill: #db4242;
}

/*----------------
  Footer
----------------*/
.l-footer {
  background-color: #fff;
  border-bottom: 4px solid #db4242;
}

.l-footer__wrap {
  padding: 80px 20px 6px;
}

@media all and (min-width: 768px) {
  .l-footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media all and (min-width: 768px) {
  .l-footer__wrap {
    padding: 62px 100px 5px;
  }
}

.l-footer__img {
  width: 180px;
}

@media all and (min-width: 768px) {
  .l-footer__img {
    width: 220px;
  }
}

.l-footer__menu {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media all and (min-width: 768px) {
  .l-footer__menu {
    margin-left: 40px;
    padding: 0;
    min-width: 587px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 76px;
  }
}

@media all and (min-width: 768px) {
  .l-footer__list {
    min-width: 105px;
  }
}

@media all and (min-width: 768px) {
  .l-footer__item + .l-footer__item {
    margin-top: 10px;
  }
}

.l-footer__link {
  font-size: 14px;
  line-height: 2;
}

@media all and (min-width: 768px) {
  .l-footer__link {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media all and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-footer__link:hover {
    text-decoration: underline;
  }
}

.l-footer__info {
  padding-top: 95px;
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
}

.l-footer__sns-link {
  width: 28px;
}

@media all and (min-width: 768px) {
  .l-footer__sns-link {
    width: 38px;
  }
}

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

@media all and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 8px;
  }
}

.l-footer__copy-inner {
  font-size: 13px;
  letter-spacing: 0.02em;
}

@media all and (min-width: 768px) {
  .l-footer__copy-inner {
    font-size: 14px;
  }
}

/*----------------
  Card | Modules
----------------*/
.c-card {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media all and (min-width: 768px) {
  .c-card {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

@media all and (min-width: 768px) {
  .top-reason .c-card {
    padding-top: 42px;
  }
}

.c-card__item {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
          box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
  height: 320px;
  padding: 30px 15px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (min-width: 768px) {
  .c-card__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 20px 20px;
    width: calc((100% - 80px) / 3);
  }
}

.--large .c-card__item {
  height: 360px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.--large .c-card__item {
  height: 360px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media all and (min-width: 768px) {
  .--large .c-card__item {
    height: 400px;
  }
}

.c-card__title {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.c-card__bold {
  font-weight: 700;
}

.c-card__illust {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.--large .c-card__illust {
  padding-top: 0;
}

@media all and (min-width: 768px) {
  .--large .c-card__illust {
    padding-top: 25px;
  }
}

.c-card__illust-inner {
  width: 200px;
}

.c-card__tag {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}

/*----------------
  タグ | Modules
----------------*/
.c-tag {
  background-color: #334252;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 10px;
}

@media all and (min-width: 768px) {
  .c-tag {
    font-size: 14px;
  }

  .l-blog-list .c-tag {
    font-size: 13px;
  }
}

.case-studies-article-tags .c-tag {
  line-height: 1.3;
}

/*----------------
  業種リンク一覧 | TOP
----------------*/
@media all and (min-width: 768px) {
  .l-category-link__wrap {
    max-width: 1280px;
    margin-inline: auto;
  }
}

.l-category-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-category-link__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  width: 50%;
}

@media all and (min-width: 768px) {
  .l-category-link__item {
    width: calc(100% / 6);
  }
}

.l-category-link__link {
  display: inline-block;
  position: relative;
  -webkit-transition: all .8s ease-in-out;
  -o-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
  width: 100%;
  z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
  .l-category-link__link:hover {
    opacity: 1;
  }
}

.l-category-link__link::before {
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  content: '';
  display: block;
  opacity: 0.4;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  will-change: opacity;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .l-category-link__link:hover::before {
    opacity: 0;
  }
  .l-category-link__link:hover .l-category-link__img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.l-category-link__view {
  position: relative;
}

.l-category-link__img {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.l-category-link__text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
  .l-category-link__text {
    font-size: 4.8vw;
  }
}

@media all and (min-width: 768px) {
  .l-category-link__text {
    font-size: 20px;
  }
}

/*----------------
  お問い合わせ | Common modules
----------------*/
.l-information {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/information_bg.jpg) 50%/cover no-repeat;
}

@media all and (min-width: 768px) {
  .l-information {
    background-image: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/information_bg_pc.jpg);
  }
}

.l-information__wrap {
  background-color: rgba(84, 84, 84, 0.8);
  padding: 80px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (min-width: 768px) {
  .l-information__wrap {
    padding: 80px 0 60px;
  }
}

.l-information__lead {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
}

@media all and (min-width: 768px) {
  .l-information__lead {
    font-size: 24px;
  }
}

.l-information__lead-text {
  font-size: 18px;
}

@media all and (min-width: 768px) {
  .l-information__lead-text {
    font-size: 24px;
  }
}

.l-information__cta {
  padding: 40px 0;
}

@media all and (min-width: 768px) {
  .l-information__cta {
    padding: 30px 0 60px;
  }
}

.l-information__contact {
  padding-top: 40px;
  position: relative;
}

@media all and (min-width: 768px) {
  .l-information__contact {
    border-top: 1px solid #fff;
    width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

@media all and (max-width: 767px) {
  .l-information__contact::before {
    border-top: 1px solid #fff;
    content: '';
    display: block;
    width: calc(100vw - 30px);
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.l-information__contact-info {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

@media all and (min-width: 768px) {
  .l-information__contact-info {
    gap: 30px;
    padding: 0;
  }
}

.l-information__contact-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-left: 21px;
  position: relative;
}

.l-information__contact-title::before {
  display: block;
  content: '▶︎';
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 7px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .l-information__contact-title::before {
    top: 43%;
    left: 5px;
  }
}

.l-information__contact-number {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 40px;
  position: relative;
}

@media all and (min-width: 768px) {
  .l-information__contact-number {
    font-size: 36px;
    padding-left: 52px;
  }
}

.l-information__contact-number::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_tel.svg) 50%/contain no-repeat;
  content: '';
  display: block;
  height: 23px;
  width: 23px;
  position: absolute;
  top: 12px;
  left: 8px;
}

@media all and (min-width: 768px) {
  .l-information__contact-number::before {
    top: 15px;
    left: 10px;
    height: 30px;
    width: 30px;
  }
}

.l-information__contact-schedule {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: 6px;
  padding-left: 6px;
}

.l-information__contact-text {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: 3px;
}

@media all and (min-width: 768px) {
  .l-information__contact-text {
    padding-left: 5px;
  }
}

/*----------------
  企業ロゴの一覧スライダー | TOP
----------------*/
.l-company-logo {
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .l-company-logo {
    overflow: hidden;
  }
}

.l-company-logo__wrap {
  padding: 10px 0;
  -webkit-animation: 40s linear infinite sliderAnimation;
          animation: 40s linear infinite sliderAnimation;
  min-width: 100%;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (min-width: 768px) {
  .l-company-logo__wrap {
    -webkit-animation: 60s linear infinite sliderAnimation;
            animation: 60s linear infinite sliderAnimation;
    padding: 20px 0 32px;
  }
}

.l-company-logo__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.l-company-logo__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}

.l-company-logo__list.--offset {
  -webkit-transform: translateX(-65px);
  -ms-transform: translateX(-65px);
  transform: translateX(-65px);
}

@media all and (min-width: 768px) {
  .l-company-logo__list.--offset {
    -webkit-transform: translateX(-85px);
    -ms-transform: translateX(-85px);
    transform: translateX(-85px);
  }
}

.l-company-logo__list + .l-company-logo__list {
  margin-top: 10px;
}

@-webkit-keyframes sliderAnimation {
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes sliderAnimation {
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.l-company-logo__slider:first-child .splide__track {
  overflow: visible;
}

.l-company-logo__slider-item {
  width: 120px;
  min-width: 120px;
}

@media all and (min-width: 768px) {
  .l-company-logo__slider-item {
    min-width: 160px;
    width: calc((100% - 70px) / 7.5);
  }
}

/*----------------
  ニュース | 記事一覧
----------------*/

.l-news-list {
  background-color: #f6f6f6;
  border-radius: 4px;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media all and (min-width: 768px) {
  .l-news-list {
    padding: 28px 40px 20px;
  }
}

.l-news-list__item {
  padding: 15px 35px 15px 0;
  position: relative;
  width: 100%;
}

@media all and (min-width: 768px) {
  .l-news-list__item {
    padding: 15px 35px 15px 0;
  }
}

.l-news-list__item:first-child {
  padding-top: 0;
}

@media all and (max-width: 767px) {
  .l-news-list__item:last-child {
    padding-bottom: 0;
  }
}

.l-news-list__item:not(:first-child) {
  border-top: 1px solid #dadada;
}

.l-news-list__item::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_button_arrow-black.svg) 50% / contain no-repeat;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 13px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-news-list__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-news-list__date {
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 13px;
  line-height: 1;
}

.l-news-list__text {
  font-size: 14px;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .l-news-list__text {
    -webkit-line-clamp: 1;
    font-size: 15px;
    font-weight: 400;
  }
}

/*--------------------------------------------------
  Blog section | 記事一覧
--------------------------------------------------*/
.l-blog-section {
  margin-top: 20px;
}

.l-blog-section__number {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

@media all and (min-width: 768px) {
  .l-blog-section__number {
    font-size: 24px;
    gap: 5px;
  }
}

.l-blog-section__contents {
  padding-top: 10px;
}

/*----------------
 Blog list | 導入事例 |Common modules
----------------*/
.l-blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media all and (max-width: 767px) {
  .l-blog-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media all and (min-width: 768px) {
  .l-blog-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
}

.l-blog-list__item {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
          box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
  min-height: 279px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media all and (min-width: 768px) {
  .l-blog-list__item {
    min-height: 352px;
    width: calc((100% - 80px) / 3);
  }
}

@media all and (max-width: 767px) {
  .top .l-blog-list__item:nth-child(n + 4) {
    display: none;
  }
}

.l-blog-list__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media all and (max-width: 767px) {
  .l-blog-list__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-blog-list__link:hover .l-blog-list__icon-img {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }
}

.l-blog-list__header {
  border-bottom: 1px solid #dadada;
  height: 100px;
  width: 100%;
  display: grid;
  place-items: center;
}

@media all and (min-width: 768px) {
  .l-blog-list__header {
    height: 150px;
  }
}

.l-blog-list__img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 80px;
  width: 200px;
}

@media all and (min-width: 768px) {
  .l-blog-list__img {
    height: 110px;
    width: 275px;
  }
}

.l-blog-list__main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 19px 17px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .l-blog-list__main {
    max-width: 343px;
  }
}

@media all and (min-width: 768px) {
  .l-blog-list__main {
    padding: 16px 20px 20px;
    min-height: 202px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-blog-list__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.l-blog-list__date {
  font-size: 13px;
  line-height: 1;
}

@media all and (min-width: 768px) {
  .l-blog-list__date {
    line-height: 1.5;
  }
}

.l-blog-list__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
   -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.l-blog-list__title {
  font-size: 14px;
  font-weight: 400;
  margin-top: 7px;
}

@media all and (min-width: 768px) {
  .l-blog-list__title {
    font-size: 16px;
  }
}

.l-blog-list__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .l-blog-list__text {
    font-size: 18px;
    margin-top: 10px;
    -webkit-line-clamp: 3;
  }
}

.l-blog-list__icon {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media all and (min-width: 768px) {
  .l-blog-list__icon {
    margin-top: auto;
    padding-top: 9px;
  }
}

.l-blog-list__icon-img {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  width: 64px;
}

@media all and (min-width: 768px) {
  .l-blog-list__icon-img {
    width: 47px;
  }
}

/*----------------
  Lower pages heading | 下層ページの共通見出し
----------------*/
.l-lower-heading {
  position: relative;
}

.l-lower-heading__wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(39, 39, 39, 0.5)), color-stop(100%, rgba(79, 50, 50, 0.18)), to(rgba(39, 39, 39, 0.38)));
  background: -o-linear-gradient(top, rgba(39, 39, 39, 0.5) 0%, rgba(34, 34, 34, 0.18) 100%, rgba(39, 39, 39, 0.38) 100%);
  background: linear-gradient(180deg, rgba(39, 39, 39, 0.5) 0%, rgba(34, 34, 34, 0.18) 100%, rgba(39, 39, 39, 0.38) 100%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  color: #fff;
  padding-inline: 15px;
  height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media all and (min-width: 768px) {
  .l-lower-heading__wrap {
    height: 320px;
  }
}

.l-lower-heading__title {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

@media all and (min-width: 768px) {
  .l-lower-heading__title {
    font-size: 40px;
  }
}

.l-lower-heading__title::before, .l-lower-heading__title::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 1.5px;
  width: 30px;
  position: absolute;
  top: 50%;
}

@media all and (min-width: 768px) {
  .l-lower-heading__title::before, .l-lower-heading__title::after {
    width: 50px;
  }
}

.l-lower-heading__title::before {
  left: -25px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media all and (min-width: 768px) {
  .l-lower-heading__title::before {
    left: -40px;
  }
}

.l-lower-heading__title::after {
  right: -25px;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

@media all and (min-width: 768px) {
  .l-lower-heading__title::after {
    right: -40px;
  }
}

.l-lower-heading__lead {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 500;
  margin-top: 11px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .l-lower-heading__title::after {
    right: -40px;
  }
}

@media all and (min-width: 768px) {
  .l-lower-heading__lead {
    font-size: 20px;
    margin-top: 20px;
  }
}

.l-lower-heading__cta {
  margin-top: 15px;
}

@media all and (min-width: 768px) {
  .l-lower-heading__cta {
    margin-top: 20px;
  }
}

/*--------------------------------------------------
  タグリスト
--------------------------------------------------*/
.l-tag-list {
  margin-top: 30px;
}

.l-tag-list__wrap {
  background-color: #f6f6f6;
  padding: 20px 15px;
  position: relative;
}

@media all and (min-width: 768px) {
  .l-tag-list__wrap {
    padding: 20px;
  }
}

.l-tag-list__title {
  font-size: 14px;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .l-tag-list__title {
    font-size: 18px;
    position: absolute;
    top: 23px;
    left: 20px;
  }
}

.l-tag-list__list {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10.5px;
}

@media all and (min-width: 768px) {
  .l-tag-list__list {
    gap: 9px 8px;
    padding-top: 0;
  }
}

@media all and (min-width: 768px) {
  .l-tag-list__item:first-child {
    margin-left: 153px;
  }
}

.l-tag-list__link {
  background-color: #fff;
  border: 1px solid #334252;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  padding: 7px 14px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

@media all and (min-width: 768px) {
  .l-tag-list__link {
    font-size: 15px;
    padding: 7px 20px;
  }
}

.l-tag-list__link.--is-active {
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

.l-tag-list__link:hover {
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.l-tag-list__link.--is-active:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.l-tag-list__link:active {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

.l-tag-list__link.--is-active:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/*----------------
  資料ダウンロード | Card
----------------*/
.l-card-download {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
          box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
  width: 100%;
  /* CTA機能で追加するクラス */
}

.l-card-download__link {
  max-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-card-download__view {
  padding: 15px 22px;
  height: 170px;
  display: grid;
  place-items: center;
}

@media all and (min-width: 768px) {
  .l-card-download__view {
    padding: 15px 20px;
  }
}

.l-card-download__view img{
  box-shadow:1px 1px 3px  rgba(0,0,0,.3);
}

.l-card-download__img {
  width: 260px;
}

@media all and (min-width: 768px) {
  .l-card-download__img {
    height: 140px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.l-card-download__info {
  padding: 10px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-card-download__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  height: 42px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .l-card-download__title {
    font-size: 18px;
    height: 46px;
  }
}

.l-card-download__download {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*----------------
  Lower pages List | 3分でわかるcyzenのすべて
----------------*/
.l-info-list {
  background-color: #f6f6f6;
  padding: 15px 10px 20px;
}

@media all and (min-width: 768px) {
  .l-info-list {
    padding: 15px 20px 20px;
    width: 100%;
  }
}

.l-info-list__title {
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

@media all and (min-width: 768px) {
  .l-info-list__title {
    font-size: 15px;
  }
}

.l-info-list__list {
  padding-top: 10px;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media all and (min-width: 768px) {
  .l-info-list__list {
    padding-left: 40px;
  }
}

.l-info-list__item {
  font-size: 14px;
  line-height: 1.3;
  position: relative;
}

@media all and (min-width: 768px) {
  .l-info-list__item {
    font-size: 15px;
  }
}

.l-info-list__item::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_check_info-list.svg) 50%/contain no-repeat;
  content: '';
  display: block;
  height: 17px;
  width: 17px;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-lower-section-heading__title {
  font-size: 24px;
  letter-spacing: 0.02em;
  text-align: center;
}

@media all and (min-width: 768px) {
  .l-lower-section-heading__title {
    font-size: 30px;
  }
}

.l-lower-section-heading__text {
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .l-lower-section-heading__text {
    font-size: 18px;
  }
}

/*----------------
  資料ダウンロードバナー
----------------*/

.l-banner-download {
  background: -webkit-gradient(linear, left top, right top, from(#29323C), to(#485563));
  background: -o-linear-gradient(left, #29323C 0%, #485563 100%);
  background: linear-gradient(90deg, #29323C 0%, #485563 100%);
  display: inline-block;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-inline: auto;
  max-width: 500px;
  position: relative;
  padding: 10px 15px 20px;
  width: 100%;
}

@media all and (min-width: 768px) {
  .l-banner-download {
    max-width: 900px;
    padding: 0 18px 0 78px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0;
  }
}

.l-banner-download::before {
  content: '';
  display: block;
  background-image: -o-radial-gradient(#fff 15%, transparent 24%), -o-radial-gradient(#fff 15%, transparent 24%);
  background-image: radial-gradient(#fff 15%, transparent 24%), radial-gradient(#fff 15%, transparent 24%);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  opacity: 0.05;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-banner-download__header {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

@media all and (min-width: 768px) {
  .l-banner-download__header {
    position: absolute;
    top: 15px;
    left: 15px;
  }
}

.l-banner-download__logo {
  width: 70px;
}

@media all and (min-width: 768px) {
  .l-banner-download__logo {
    width: 80px;
  }
}

.l-banner-download__text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

@media all and (min-width: 768px) {
  .l-banner-download__text {
    font-size: 14px;
  }
}

.l-banner-download__body {
  padding-top: 7px;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .l-banner-download__body {
    grid-area: 1 / 1 / 2 / 4;
    padding-top: 26px;
  }
}

.l-banner-download__lead, .l-banner-download__inner, .l-banner-download__inner-large {
  color: #fff;
  line-height: 1.3;
}

.l-banner-download__lead {
  font-size: 15px;
  font-weight: 500;
}

@media all and (min-width: 768px) {
  .l-banner-download__lead {
    font-size: 18px;
  }
}

.l-banner-download__title {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (min-width: 768px) {
  .l-banner-download__title {
    display: block;
  }
}

.l-banner-download__inner, .l-banner-download__inner-large {
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .l-banner-download__inner, .l-banner-download__inner-large {
    font-size: 24px;
    line-height: 1.5;
  }
}

@media all and (max-width: 767px) {
  .l-banner-download__inner {
    font-size: 18px;
  }
}

@media all and (max-width: 767px) {
  .l-banner-download__inner-large {
    font-size: 24px;
  }
}

.l-banner-download__view {
  padding-top: 11px;
  position: relative;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .l-banner-download__view {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-area: 1 / 4 / 4 / 6;
  }
}

.l-banner-download__img {
  margin-inline: auto;
  width: 200px;
}

@media all and (min-width: 768px) {
  .l-banner-download__img {
    margin-inline: 0;
    max-width: 240px;
    width: 100%;
  }
}

.l-banner-download__button {
  padding-top: 10px;
}

@media all and (min-width: 768px) {
  .l-banner-download__button {
    grid-area: 2 / 1 / 3 / 4;
  }
}

/*----------------
  ブログ記事 | キービジュアルまでの部分
----------------*/
.l-blog-article-heading__wrap {
  padding: 20px 15px 20px;
}

@media all and (min-width: 768px) {
  .l-blog-article-heading__wrap {
    padding: 60px 10px 20px;
  }
}

.l-blog-article-heading__title {
  font-size: 22px;
}

@media all and (min-width: 768px) {
  .l-blog-article-heading__title {
    font-size: 36px;
  }
}

.l-blog-article-heading__info {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-blog-article-heading__date,
.l-blog-article-heading__name {
  font-size: 12px;
}

@media all and (min-width: 768px) {

  .l-blog-article-heading__date,
  .l-blog-article-heading__name {
    font-size: 13px;
  }
}

.l-blog-article-heading__name {
  margin-left: 10px;
}

.l-blog-article-heading__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 9px;
}

@media all and (min-width: 768px) {
  .l-blog-article-heading__right {
    gap: 11px;
  }
}

.l-blog-article-heading__icon {
  overflow: hidden;
  border-radius: 4px;
  display: inline-block;
  height: 30px;
  width: 30px;
}

.l-blog-article-heading__icon.--is-twitter {
  background-color: #55acee;
}

.l-blog-article-heading__icon.--is-facebook {
  background-color: #3b5998;
}

.l-blog-article-heading__icon.--is-line {
  background-color: #00c300;
}

.l-blog-article-heading__visual {
  padding-top: 20px;
}

/*----------------
  よくある質問
----------------*/
.l-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media all and (min-width: 768px) {
  .l-faq {
    gap: 17px;
  }
}

.l-faq__row {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
  box-shadow: 0px 0px 15px rgba(55, 66, 78, 0.05);
  padding: 10px 15px;
}

@media all and (min-width: 768px) {
  .l-faq__row {
    padding: 0 20px;
  }
}

.l-faq__question::before,
.l-faq__answer::before {
  content: '';
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  left: 5px;
}

@media all and (min-width: 768px) {

  .l-faq__question::before,
  .l-faq__answer::before {
    left: -2px;
  }
}

.l-faq__question::before {
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_faq_q.svg) 50%/contain no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .l-faq__question::before {
    top: 55%;
  }
}

.l-faq__answer::before {
  top: 15px;
  background: url(https://6158193.fs1.hubspotusercontent-na2.net/hubfs/6158193/raw_assets/public/cyzen-2023-theme/images/common/icon_faq_a.svg) 50%/contain no-repeat;
}

.l-faq__question {
  padding: 10px 0 15px 50px;
  position: relative;
  min-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (min-width: 768px) {
  .l-faq__question {
    padding: 24px 0 19px 45px;
  }
}

.l-faq__question-inner {
  font-size: 16px;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .l-faq__question-inner {
    font-size: 18px;
  }
}

.l-faq__answer {
  border-top: 1px solid #dadada;
  padding: 15px 0 10px 50px;
  position: relative;
}

@media all and (min-width: 768px) {
  .l-faq__answer {
    padding-bottom: 20px;
  }
}

.l-faq__answer-inner {
  font-size: 14px;
}

@media all and (min-width: 768px) {
  .l-faq__answer-inner {
    font-size: 16px;
  }
}

/* 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;
  width: 100%;
}

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

/* Desktop layout */

@media (min-width: 768px) {
  .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);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

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

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

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

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

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

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

/* Logo */

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

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

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

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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