/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

/* Paragraphs */

p {
  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,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: 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;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

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

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
/*! sanitize.css v4.1.0 | CC0 License | github.com/jonathantneal/sanitize.css */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

template,
[hidden] {
  display: none;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  box-sizing: border-box;
  cursor: default;
  font-family: sans-serif;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

hr {
  height: 0;
  overflow: visible;
}

nav ol,
nav ul {
  list-style: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

progress {
  vertical-align: baseline;
}

small {
  font-size: 83.3333%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border-style: none;
}

svg {
  fill: currentColor;
}
svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  outline-width: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
  font-size: 1em;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

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

::-webkit-search-cancel-button,
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[hidden][aria-hidden=false] {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}
[hidden][aria-hidden=false]:focus {
  clip: auto;
}

html {
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #000;
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

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

table th {
  font-weight: normal;
}

a {
  color: #000;
  text-decoration: none;
}

a[href^=tel],
a[href^=mailto],
a[data-detected=true] {
  text-decoration: none !important;
  border-bottom: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: middle;
  border: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl, dt, dd {
  margin: 0;
}

p {
  margin-top: 0;
}

figure {
  margin: 0;
}

/*---------------------------------------
 * Print
 ---------------------------------------*/
@media print {
  body {
    zoom: 65%;
    -webkit-print-color-adjust: exact;
  }
}
@media print and (-ms-high-contrast: none) {
  @page {
    size: A4;
    margin: 12.7mm 9.7mm;
  }
  body {
    zoom: 1.8;
    width: 1200px;
    transform: scale(0.5);
    transform-origin: 0 0;
  }
}
/*---------------------------------------
 * Layout Common
 ---------------------------------------*/
.l-container {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
@media print, screen and (min-width: 768px) {
  .l-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 0;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .l-container {
    padding: 60px 0;
  }
}

.body-container-wrapper {
  padding-top: 50px;
}
@media screen and (min-width: 1281px) {
  .body-container-wrapper {
    padding-top: 140px;
  }
}

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

/*---------------------------------------
 *  Layout Header
 ---------------------------------------*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
}
.header__wrapper {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  background: #fff;
}
@media screen and (max-width: 1280px) {
  .header__wrapper {
    height: 50px;
  }
}
.header__container {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1800px;
  height: 50px;
  display: block;
  background: #fff;
}
@media screen and (max-width: 1280px) {
  .header__container {
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1281px) {
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    width: 95%;
    height: 140px;
  }
}
.header__skip {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header__column {
    display: none;
    position: absolute;
    top: 50px;
    z-index: 99;
    width: 100%;
    background-color: #eff2fc;
  }
}
@media screen and (max-width: 1280px) {
  .header__column.is-nav-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    top: 0;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
@media screen and (max-width: 1280px) {
  .header__row-1 {
    order: 2;
    padding: 60px 40px 55px;
    background-color: #000;
    text-align: center;
  }
}
@media screen and (min-width: 1281px) {
  .header__row-1 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1280px) {
  .header__row-2 {
    order: 1;
  }
}
@media screen and (min-width: 1281px) {
  .header__row-2 {
    margin-top: 20px;
  }
}
.header__logo {
  line-height: 1;
  display: block;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    width: 130px;
    margin-top: 10px;
    margin-left: 10px;
  }
}
.header__search {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header__search {
    display: none;
  }
}
.header__search form {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  width: 220px;
  height: 30px;
  padding: 0;
  margin: 8px 0 14px;
  overflow: hidden;
}
.header__search .hs-search-field__input {
  width: 220px;
  height: 30px;
  border: 0;
  background-color: #fff;
}
.header__search .hs-search-field__input:focus {
  outline: none;
}
.header__search .hs-search-field__button {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #1d2088;
  position: absolute;
  right: 0;
  top: 0;
}
.header__search .hs-search-field__button::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.19078 15.19342'%3E%3Cpath fill='%23fff' d='M12.34342,6.17207c.00129,1.30866-.41449,2.58368-1.187,3.64l3.756,3.759c.37114.37114.37114.97286,0,1.344s-.97286.37114-1.344,0l-3.755-3.759c-2.75239,2.01087-6.61377,1.40975-8.62464-1.34264C-.82209,7.06103-.22097,3.19965,2.53142,1.18878,5.28381-.82209,9.1452-.22097,11.15607,2.53142c.77212,1.05685,1.18828,2.33179,1.18836,3.64064h-.001ZM6.17342,10.44407c2.35936.00055,4.27245-1.91164,4.273-4.271.00055-2.35936-1.91164-4.27245-4.271-4.273-2.35936-.00055-4.27245,1.91164-4.273,4.271,0,.00033,0,.00067,0,.001,0,2.35897,1.91203,4.27145,4.271,4.272Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.header__search .hs_cos_wrapper_type_icon {
  display: none;
}
.header__phone {
  margin-bottom: 0;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
}
@media screen and (min-width: 1281px) {
  .header__phone {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .header__phone {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__phone {
    padding-bottom: 5.3333333333vw;
  }
}
.header__phone .msg {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header__phone .msg {
    font-size: 12px;
    display: block;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__phone .msg {
    font-size: 2.9333333333vw;
  }
}
.header__phone .num {
  position: relative;
  display: block;
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  line-height: 2.2;
  color: #1d2088;
  padding-left: 30px;
}
@media screen and (max-width: 1280px) {
  .header__phone .num {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__phone .num {
    font-size: 8.5333333333vw;
    padding-left: 9.8666666667vw;
  }
}
.header__phone .num::before {
  position: absolute;
  top: 14px;
  left: 8px;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.66135 32.26184'%3E%3Cpath fill='%231d2088' d='M11.26854,3.4581c.13273-1.00923-.50659-1.95943-1.49146-2.21671L5.31144.06611c-.88321-.23071-1.81182.15617-2.26998.94571C-3.21998,11.85918.4963,25.72856,11.34255,31.99192c.79154.45469,1.78919.32543,2.43871-.31598l3.27972-3.25064c.72428-.71525.80285-1.85781.18329-2.66546l-3.19638-4.1837c-.54182-.7117-1.48749-.98181-2.32346-.66364l-3.02102,1.14256c-2.24551-3.24914-3.29773-7.17512-2.97812-11.11175l3.18506-.51669c.88274-.14306,1.56635-.8495,1.68036-1.73646l.67483-5.22685.003-.0052Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1280px) {
  .header__phone .num::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.66135 32.26184'%3E%3Cpath fill='%23fff' d='M11.26854,3.4581c.13273-1.00923-.50659-1.95943-1.49146-2.21671L5.31144.06611c-.88321-.23071-1.81182.15617-2.26998.94571C-3.21998,11.85918.4963,25.72856,11.34255,31.99192c.79154.45469,1.78919.32543,2.43871-.31598l3.27972-3.25064c.72428-.71525.80285-1.85781.18329-2.66546l-3.19638-4.1837c-.54182-.7117-1.48749-.98181-2.32346-.66364l-3.02102,1.14256c-2.24551-3.24914-3.29773-7.17512-2.97812-11.11175l3.18506-.51669c.88274-.14306,1.56635-.8495,1.68036-1.73646l.67483-5.22685.003-.0052Z'/%3E%3C/svg%3E");
  }
}
@media screen and (max-width: 767px) {
  .header__phone .num::before {
    top: 5.3333333333vw;
    left: 0;
    width: 9.8666666667vw;
    height: 9.8666666667vw;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.66135 32.26184'%3E%3Cpath fill='%23fff' d='M11.26854,3.4581c.13273-1.00923-.50659-1.95943-1.49146-2.21671L5.31144.06611c-.88321-.23071-1.81182.15617-2.26998.94571C-3.21998,11.85918.4963,25.72856,11.34255,31.99192c.79154.45469,1.78919.32543,2.43871-.31598l3.27972-3.25064c.72428-.71525.80285-1.85781.18329-2.66546l-3.19638-4.1837c-.54182-.7117-1.48749-.98181-2.32346-.66364l-3.02102,1.14256c-2.24551-3.24914-3.29773-7.17512-2.97812-11.11175l3.18506-.51669c.88274-.14306,1.56635-.8495,1.68036-1.73646l.67483-5.22685.003-.0052Z'/%3E%3C/svg%3E");
  }
}
.header__phone .sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .header__phone .sub {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__phone .sub {
    font-size: 2.9333333333vw;
  }
}
.header__navigation {
  background-color: transparent;
}
.header__menu-button {
  display: none;
  position: absolute;
  right: 15px;
  top: 10px;
  padding: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: right 0.3s ease-in-out;
}
@media screen and (max-width: 1280px) {
  .header__menu-button {
    display: block;
  }
}
.header__menu-button:focus, .header__menu-button:active, .header__menu-button:hover {
  background: transparent;
  border: none;
  outline: none;
}
.header__menu-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1d2088;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.header__menu-button span:nth-child(1) {
  top: 6px;
}
.header__menu-button span:nth-child(2) {
  top: 14px;
}
.header__menu-button span:nth-child(3) {
  top: 22px;
}
.header__menu-button.is-nav-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}
.header__menu-button.is-nav-open span:nth-child(2) {
  opacity: 0;
}
.header__menu-button.is-nav-open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}
.header__menu-list {
  display: flex;
}
@media screen and (max-width: 1280px) {
  .header__menu-list {
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
    background-color: #eff2fc;
  }
}
@media screen and (min-width: 1281px) {
  .header__menu-list {
    justify-content: flex-end;
    flex-direction: row;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    gap: 20px;
    background-color: transparent;
  }
}
.header__menu-item {
  min-height: 50px;
}
@media screen and (max-width: 1280px) {
  .header__menu-item {
    position: relative;
  }
}
.header__menu-link {
  display: block;
  padding: 15px 0;
  color: #333;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .header__menu-link {
    font-size: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .header__menu-link {
    margin: 0;
    padding: 20px 0;
    color: #1d2088;
    border-bottom: 1px solid #1d2088;
  }
}
.header__menu-link:focus, .header__menu-link:hover {
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .header__menu-link:focus, .header__menu-link:hover {
    color: #1d2088;
  }
}
@media screen and (min-width: 1281px) {
  .header__menu-link:focus, .header__menu-link:hover {
    color: #333;
  }
}
@media screen and (min-width: 1281px) {
  .header__menu-link:focus::after, .header__menu-link:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #e81a4b;
  }
}
.header__menu-link .menu-toggle {
  display: none;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 0;
  margin-left: 8px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .header__menu-link .menu-toggle {
    display: block;
    right: 5px;
    top: 21px;
  }
}
.header__menu-link .menu-toggle::before, .header__menu-link .menu-toggle::after {
  content: "";
  position: absolute;
  background: #1d2088;
  width: 25px;
  height: 1px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
  transform: translate(-50%, -50%);
}
.header__menu-link .menu-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.header__menu-link.is-open .menu-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 6, 70, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.header__sub-menu {
  background: #eff2fc;
  display: block;
  z-index: 99;
}
@media screen and (max-width: 1280px) {
  .header__sub-menu {
    top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
}
@media screen and (min-width: 1281px) {
  .header__sub-menu {
    padding: 50px;
    z-index: 10;
    width: 100vw;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1281px) {
  .header__sub-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1280px) {
  .header__sub-menu.is-open {
    max-height: 500px;
  }
}
@media screen and (min-width: 1281px) {
  .header__sub-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1280px) {
  .header__sub-list {
    background-color: #fff;
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 5.3333333333vw;
    gap: 24px;
  }
}
@media screen and (min-width: 1281px) {
  .header__sub-list {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}
.header__sub-item {
  display: flex;
  flex-basis: 50%;
  gap: 16px;
  color: #1d2088;
}
.header__sub-item .image {
  flex-shrink: 0;
  width: 200px;
}
@media screen and (max-width: 1280px) {
  .header__sub-item .image {
    width: 26.6666666667vw;
  }
}
.header__sub-item .image img {
  display: block;
  width: 100%;
  height: auto;
}
.header__sub-item .text-box {
  flex: 1;
}
.header__sub-item .text-box .title {
  font-weight: 500;
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 1280px) {
  .header__sub-item .text-box .title {
    padding-right: 0px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1281px) {
  .header__sub-item .text-box .title {
    padding-top: 18px;
    margin-bottom: 30px;
  }
}
.header__sub-item .text-box .title-link {
  display: block;
  font-size: 22px;
  color: #1d2088;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__sub-item .text-box .title-link {
    font-size: 14px;
  }
}
.header__sub-item .text-box .title-link::before, .header__sub-item .text-box .title-link::after {
  content: "";
  position: absolute;
}
.header__sub-item .text-box .title-link::before {
  width: 50px;
  height: 50px;
  top: -10px;
  right: 0;
  border-radius: 50%;
  border: solid 1px #1d2088;
}
@media screen and (max-width: 767px) {
  .header__sub-item .text-box .title-link::before {
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    top: -0.6666666667vw;
    right: 0;
  }
}
.header__sub-item .text-box .title-link::after {
  width: 15px;
  height: 12.863px;
  top: 10px;
  right: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%231d2088'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  transition: right 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__sub-item .text-box .title-link::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 2vw;
    right: 2.6666666667vw;
  }
}
.header__sub-item .text-box .title-link:hover {
  text-decoration: none;
}
.header__sub-item .text-box .title-link:hover::after {
  right: 10px;
}
.header__sub-item .text-box .list {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
@media screen and (max-width: 1280px) {
  .header__sub-item .text-box .item {
    margin-top: 1.3333333333vw;
  }
}
@media screen and (min-width: 1281px) {
  .header__sub-item .text-box .item {
    margin-top: 10px;
  }
}
.header__sub-item .text-box .item-link {
  display: block;
  font-size: 16px;
  color: #1d2088;
  font-style: normal;
  line-height: 1.5;
  text-decoration: underline;
}
.header__sub-item .text-box .item-link:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .header__sub-item .text-box .item-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 1280px) {
  .header__sub-item {
    max-width: 100%;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}
.footer__container {
  width: 100%;
  margin: 0 auto;
}
.footer__contact {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__contact {
    display: flex;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-info {
    text-align: center;
    border-bottom: 1px solid #fff;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__contact-info {
    flex-basis: 50%;
    border-right: 1px solid #fff;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__contact-buttons {
    padding: 0 50px;
  }
}
.footer__contact-text {
  color: #fff;
  margin-bottom: 16px;
}
.footer__contact-tel {
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  padding-left: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer__contact-tel {
    text-align: center;
    font-size: 8.5333333333vw;
    padding-left: 8.5333333333vw;
  }
}
.footer__contact-tel::before {
  position: absolute;
  top: 14px;
  left: 8px;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.66135 32.26184'%3E%3Cpath fill='%23fff' d='M11.26854,3.4581c.13273-1.00923-.50659-1.95943-1.49146-2.21671L5.31144.06611c-.88321-.23071-1.81182.15617-2.26998.94571C-3.21998,11.85918.4963,25.72856,11.34255,31.99192c.79154.45469,1.78919.32543,2.43871-.31598l3.27972-3.25064c.72428-.71525.80285-1.85781.18329-2.66546l-3.19638-4.1837c-.54182-.7117-1.48749-.98181-2.32346-.66364l-3.02102,1.14256c-2.24551-3.24914-3.29773-7.17512-2.97812-11.11175l3.18506-.51669c.88274-.14306,1.56635-.8495,1.68036-1.73646l.67483-5.22685.003-.0052Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .footer__contact-tel::before {
    top: 3.7333333333vw;
    left: 1.0666666667vw;
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__contact-buttons {
    flex-basis: 50%;
  }
}
.footer__tel-time {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 4px;
}
.footer__sitemap {
  padding: 40px 0;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer__sitemap {
    flex-direction: column;
    gap: 0 40px;
  }
}
.footer__sitemap .inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__sitemap .inner {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__logo-area {
    flex-basis: 50%;
  }
}
.footer__logo {
  margin-bottom: 50px;
}
.footer__logo img {
  max-width: 230px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    margin-left: 0;
    margin-right: auto;
    max-width: 49.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .company-info {
    max-width: 230px;
  }
}
.footer .company-name {
  max-width: 230px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer .company-name {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .company-name {
    font-size: 18px;
  }
}
.footer .address {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer .address {
    font-size: 2.9333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .address {
    font-size: 12px;
  }
}
.footer__nav {
  flex-basis: 50%;
  display: flex;
  gap: 0 20px;
}
@media print, screen and (min-width: 768px) {
  .footer__nav {
    justify-content: center;
    gap: 40px;
  }
}
.footer .nav-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.footer .nav-list .item {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer .nav-list .item {
    font-size: 3.4666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .nav-list .item {
    font-size: 16px;
  }
}
.footer .nav-list .item a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
.footer .nav-list .item a.link--blank::after {
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/common/icon_blank.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.footer .nav-list .item a:hover {
  text-decoration: underline;
}
.footer .nav-list .item-sub {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .footer .nav-list .item-sub {
    font-size: 3.2vw;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .nav-list .item-sub {
    font-size: 14px;
  }
}
.footer .nav-list .item-sub a {
  color: #bebebe;
  text-decoration: none;
}
.footer .nav-list .item-sub a:hover {
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #fff;
}

/*---------------------------------------
 * Layout Main
 ---------------------------------------*/
.l-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.p-home-features .dnd-section .dnd-column {
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .p-home-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}
.p-home-features--home .inner {
  background: transparent;
}

.p-home-service-menu {
  position: relative;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-image: linear-gradient(to right, #f1f5ff 5%, #ffecff 51%, #fff1f4 95%);
}
@media print, screen and (min-width: 768px) {
  .p-home-service-menu {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-home-service-menu .inner {
    padding: 120px 0;
  }
}

.p-home-cta__inner {
  padding: 60px 0 0;
}
@media print, screen and (min-width: 768px) {
  .p-home-cta__inner {
    padding: 100px 0 80px;
  }
}

.p-home-seminar {
  background-color: #eff2fc;
}
.p-home-seminar .inner {
  position: relative;
}

.p-home-case .inner {
  position: relative;
}

.p-home-blog {
  background-color: #f5f5f5;
}
.p-home-blog .inner {
  position: relative;
}

.p-service-features {
  position: relative;
  margin-right: 100px;
  padding-left: 100px;
  margin-left: 0;
  background: #EFF2FC;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 1600px) {
  .p-service-features {
    margin-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 1400px) {
  .p-service-features {
    margin-right: 0px;
    padding-left: 0px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-service-features {
    border-top-right-radius: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-features {
    border-top-right-radius: 20px;
  }
}
.p-service-features .dnd-section .dnd-column {
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .p-service-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}
.p-service-features--home .inner {
  background: transparent;
}

.p-service-flow {
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-service-flow .inner {
    width: 80%;
  }
}
.p-service-flow .dnd-section .dnd-column {
  padding: 0;
}

.p-service-cta .dnd-section .dnd-column {
  padding: 0;
}

@media print, screen and (min-width: 1024px) {
  .p-service-case__cta {
    margin-top: 50px;
  }
}

.p-service-menu--page {
  position: relative;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-image: linear-gradient(to right, #f1f5ff 5%, #ffecff 51%, #fff1f4 95%);
}
@media print, screen and (min-width: 1024px) {
  .p-service-menu--page {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-service-menu--page {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-service-menu--page .inner {
    padding: 120px 0;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-service-menu--page .inner {
    padding: 60px 0;
  }
}

.p-seminar-wrapper .inner {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-seminar-wrapper .inner {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .p-seminar-wrapper .inner {
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}

.p-seminar-article {
  max-width: 710px;
  flex: 1;
}
.p-seminar-article .thumb {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
}
.p-seminar-article .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-seminar-article .block .textarea {
  padding: 20px 0;
}
.p-seminar-article .block p {
  color: #323232;
}

.p-case-wrapper .inner {
  max-width: 1000px;
}

.p-case-article .case-head {
  margin-bottom: 30px;
}
.p-case-article .case-head .cat-wrap {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 8px;
}
.p-case-article .case-head .cat-wrap .jobtype {
  font-size: 16px;
  width: 102px;
  height: 28px;
  padding: 2px 35px;
  color: #fff;
  background-color: #1d2088;
  transition: opacity 0.3s ease;
  margin-bottom: 0;
}
.p-case-article .case-head .cat-wrap .company {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
}
.p-case-article .case-head .title {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #000;
  font-size: 26px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
}
.p-case-article .thumb {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
}
.p-case-article .case-info {
  padding: 20px;
  border-radius: 20px;
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-case-article .case-info {
    padding: 30px 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-case-article .case-info {
    grid-template-columns: 1fr;
  }
}
.p-case-article .case-info .item {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 0;
}
.p-case-article .case-info .label {
  width: 138px;
  height: 26px;
  font-size: 14px;
  padding: 3px 5px;
  border-radius: 13px;
  background-color: #1d2088;
  color: #fff;
  text-align: center;
}
.p-case-article .case-info .text {
  font-size: 16px;
  color: #333;
}
.p-case-article .case-detail {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-case-article .case-detail .item {
    display: flex;
  }
}
.p-case-article .case-detail .item .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  border-top-left-radius: 10px;
  margin: 0;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .p-case-article .case-detail .item .title {
    border-top-right-radius: 10px;
    font-size: 18px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-case-article .case-detail .item .title {
    border-bottom-left-radius: 16px;
    width: 160px;
    min-height: 130px;
    padding: 20px;
    font-size: 24px;
  }
}
.p-case-article .case-detail .item .detail {
  padding: 20px;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-case-article .case-detail .item .detail {
    border-bottom-left-radius: 10px;
    border-top: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .p-case-article .case-detail .item .detail {
    padding: 20px 40px;
    border-top-right-radius: 10px;
    border-left: 0;
    flex: 1;
  }
}
.p-case-article .case-detail .item .detail-list {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: #333;
  margin-top: 5px;
}
.p-case-article .case-detail .item .detail-list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.p-case-article .case-detail .item .detail-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #333;
}
.p-case-article .case-detail .item--case .title {
  background-color: #333;
}
.p-case-article .case-detail .item--case .detail {
  border: solid 1px #333;
}
@media screen and (max-width: 767px) {
  .p-case-article .case-detail .item--case .detail {
    border-top: 0;
  }
}
.p-case-article .case-detail .item--factor .title {
  background-color: #1d2088;
}
.p-case-article .case-detail .item--factor .detail {
  border: solid 1px #1d2088;
}
@media screen and (max-width: 767px) {
  .p-case-article .case-detail .item--factor .detail {
    border-top: 0;
  }
}
.p-case-article .case-detail .item--effect .title {
  background-image: linear-gradient(to right, #1d2088, #7a1d88 47%, #e81a4b 95%);
}
.p-case-article .case-detail .item--effect .detail {
  border: solid 1px #e81a4b;
}
@media screen and (max-width: 767px) {
  .p-case-article .case-detail .item--effect .detail {
    border-top: 0;
  }
}
.p-case-article .block .textarea {
  padding: 20px 0;
}
.p-case-article .block .textarea img {
  margin: 20px auto;
}
.p-case-article .block .textarea h2:not(class) {
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #1d2088;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.p-case-article .block .textarea h3:not(class) {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 5px 10px;
  font-weight: bold;
  line-height: 1.5;
  background-color: #dae4fe;
  font-size: 20px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.p-case-article .block .textarea h4:not(class) {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 5px 10px 5px 20px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.p-case-article .block .textarea h4:not(class)::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 32px;
  margin: 0 15px 0 0;
  background-color: #1d2088;
  margin-right: 10px;
}
.p-case-article .block p {
  color: #323232;
}

.p-case-related {
  background-color: #f5f5f5;
}

.p-blog-wrapper .inner {
  max-width: 1000px;
}

.p-blog-article .blog-head {
  margin-bottom: 30px;
}
.p-blog-article .blog-head .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #1d2088;
  margin-bottom: 10px;
}
.p-blog-article .blog-head .title {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #000;
  font-size: 26px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
}
.p-blog-article .thumb {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
}
.p-blog-article .block {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  .p-blog-article .block {
    margin-bottom: 100px;
  }
}
.p-blog-article .block .textarea {
  padding: 20px 0;
}
.p-blog-article .block .textarea img {
  margin: 20px auto;
}
.p-blog-article .block .textarea h2:not(class) {
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #1d2088;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.p-blog-article .block .textarea h3:not(class) {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 5px 10px;
  font-weight: bold;
  line-height: 1.5;
  background-color: #dae4fe;
  font-size: 20px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.p-blog-article .block .textarea h4:not(class) {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 5px 10px 5px 20px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.p-blog-article .block .textarea h4:not(class)::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 32px;
  margin: 0 15px 0 0;
  background-color: #1d2088;
  margin-right: 10px;
}
.p-blog-article .block p {
  color: #323232;
}

.p-blog-related {
  background-color: #f5f5f5;
}

.p-download-wrapper .inner {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-download-wrapper .inner {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .p-download-wrapper .inner {
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}

.p-download-article {
  max-width: 710px;
}
.p-download-article .article-head {
  margin-bottom: 30px;
}
.p-download-article .title {
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  margin: 10px 0 15px;
  font-size: 26px;
  line-height: 1.5;
  color: #333;
}
.p-download-article .categories {
  margin-bottom: 40px;
}
.p-download-article .thumb {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
}
.p-download-article .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-download-article .download-block .textarea {
  padding: 20px 0;
}

.p-beginner {
  position: relative;
}
.p-beginner .inner {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-beginner .inner {
    padding-top: 0;
  }
}
.p-beginner .c-heading {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-beginner .c-heading {
    margin-top: 50px;
  }
}

.p-form-sidebar {
  position: sticky;
  top: 140px;
  height: fit-content;
  width: 450px;
  padding: 50px 30px;
  border-radius: 20px;
  background-color: #f5f5f5;
}
.p-form-sidebar .form-title {
  display: none;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding: 0;
}
.p-form-sidebar form label,
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-FieldLabel > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-form-sidebar .hs-form-required,
.p-form-sidebar .hsfc-FieldLabel__RequiredIndicator {
  font-size: 0;
  position: relative;
}
.p-form-sidebar .hs-form-required::after,
.p-form-sidebar .hsfc-FieldLabel__RequiredIndicator::after {
  content: "必須"; /* 表示させたい文字 */
  font-size: 12px; /* お好みで調整 */
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 20px;
  border-radius: 10px;
  padding: 2px 15px;
  background-color: #e60012;
  color: #fff;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-TextInput,
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  margin: 0;
  padding: 8px 10px;
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  background-color: #fff;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  height: 151px !important;
}
.p-form-sidebar .hsfc-RadioFieldGroup__Options {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options > *:not(:last-child) {
  margin-bottom: 0;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-RichText {
  margin-top: 0;
  margin-bottom: 0;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-RichText p {
  color: #323232;
  font-size: 14px;
  margin-bottom: 0;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-RichText a {
  color: #1d2088;
  text-decoration: underline;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-CheckboxField label {
  color: #323232;
  font-size: 14px;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1.25;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  height: 68px;
  border-radius: 34px;
  padding: 0;
  font-size: 18px;
  background-image: linear-gradient(to right, #1d2088 9%, #7a1d88 50%, #e81a4b 94%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-form-sidebar [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons {
    margin-top: 30px;
    width: 90%;
    max-width: 670px;
  }
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  top: 28px;
  right: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%23ffffff'/%3E%3C/svg%3E");
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons:hover {
  color: #fff;
}
.p-form-sidebar [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons .hsfc-Button {
  display: block;
  width: 100%;
  height: 100%;
  background: none !important;
  background-color: transparent !important;
  border: none;
  text-decoration: none;
  color: inherit;
  padding: 24px 20px !important;
}
@media screen and (max-width: 767px) {
  .p-form-sidebar {
    width: 100%;
    top: 50px;
  }
}

.p-contact {
  width: 100%;
}
.p-contact__inner {
  max-width: 1000px;
}
.p-contact .form-wrap {
  padding: 80px;
  border-radius: 20px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-contact .form-wrap {
    padding: 50px 30px;
  }
}
.p-contact .form-wrap .hsfc-CheckboxField label,
.p-contact .form-wrap .hsfc-RichText {
  max-width: 700px;
  margin: 0 auto;
}
.p-contact .form-wrap .form-title {
  display: none;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding: 0;
}
.p-contact .form-wrap form label,
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-FieldLabel > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-contact .form-wrap .hs-form-required,
.p-contact .form-wrap .hsfc-FieldLabel__RequiredIndicator {
  font-size: 0;
  position: relative;
}
.p-contact .form-wrap .hs-form-required::after,
.p-contact .form-wrap .hsfc-FieldLabel__RequiredIndicator::after {
  content: "必須"; /* 表示させたい文字 */
  font-size: 12px; /* お好みで調整 */
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 20px;
  border-radius: 10px;
  padding: 2px 15px;
  background-color: #e60012;
  color: #fff;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-TextInput,
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  margin: 0;
  padding: 8px 10px;
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  background-color: #fff;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  height: 151px !important;
}
.p-contact .form-wrap .hsfc-RadioFieldGroup__Options {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options > *:not(:last-child) {
  margin-bottom: 0;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-RichText {
  margin-top: 0;
  margin-bottom: 0;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-RichText p {
  color: #323232;
  font-size: 14px;
  margin-bottom: 0;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-RichText a {
  color: #1d2088;
  text-decoration: underline;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-CheckboxField label {
  color: #323232;
  font-size: 14px;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1.25;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  height: 68px;
  border-radius: 34px;
  padding: 0;
  font-size: 18px;
  background-image: linear-gradient(to right, #1d2088 9%, #7a1d88 50%, #e81a4b 94%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons {
    margin-top: 30px;
    width: 90%;
    max-width: 670px;
  }
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  top: 28px;
  right: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%23ffffff'/%3E%3C/svg%3E");
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons:hover {
  color: #fff;
}
.p-contact .form-wrap [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons .hsfc-Button {
  display: block;
  width: 100%;
  height: 100%;
  background: none !important;
  background-color: transparent !important;
  border: none;
  text-decoration: none;
  color: inherit;
  padding: 24px 20px !important;
}

@media print, screen and (min-width: 768px) {
  .c-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.c-buttons--mt40 {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-buttons--mt40 {
    margin-top: 40px;
  }
}
.c-buttons .button {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1.25;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  height: 68px;
  border: 0;
  border-radius: 34px;
  padding: 24px 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-buttons .button {
    margin-top: 30px;
    width: 95%;
    max-width: 670px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-buttons .button--notext {
    padding: 21px 20px;
  }
}
.c-buttons .button a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .c-buttons .button a {
    font-size: 15px;
  }
}
.c-buttons .button::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  top: 28px;
  right: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
.c-buttons .button:hover, .c-buttons .button:focus {
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.8;
}
.c-buttons .button--default, .c-buttons .button--download {
  color: #1d2088;
  border: solid 1px #1d2088;
  background-color: #fff;
}
.c-buttons .button--default::after, .c-buttons .button--download::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%231d2088'/%3E%3C/svg%3E");
}
.c-buttons .button--default:hover, .c-buttons .button--download:hover {
  color: #1d2088;
}
.c-buttons .button--contact {
  background-image: linear-gradient(to right, #1d2088 9%, #7a1d88 50%, #e81a4b 94%);
  color: #fff;
}
.c-buttons .button--contact::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%23ffffff'/%3E%3C/svg%3E");
}
.c-buttons .button--contact:hover {
  color: #fff;
}
.c-buttons .button .text {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 2px 5px 2px;
  font-size: 14px;
  border-radius: 20px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  border: solid 1px #1d2088;
  width: 80%;
  max-width: 256px;
}
@media screen and (max-width: 767px) {
  .c-buttons .button .text {
    font-size: 12px;
  }
}
.c-buttons .button .text--download {
  color: #fff;
  background-color: #1d2088;
}
@media print, screen and (min-width: 768px) {
  .c-buttons .button .text--download {
    width: 192px;
  }
}
.c-buttons .button .text--contact {
  color: #1d2088;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .c-buttons .button .text--contact {
    width: 261px;
  }
}
@media screen and (max-width: 1280px) {
  .c-buttons--header {
    display: block;
    padding: 6.6666666667vw 0;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1281px) {
  .c-buttons--header {
    display: flex;
    margin-left: 20px;
    gap: 10px;
  }
}
@media screen and (min-width: 1281px) {
  .c-buttons--header .button {
    width: 200px;
    height: 45px;
    font-size: 15px;
    padding: 13px 10px;
  }
}
@media screen and (max-width: 1280px) {
  .c-buttons--header .button {
    width: 100%;
  }
}
.c-buttons--header .button::after {
  display: none;
}
@media screen and (min-width: 1281px) {
  .c-buttons--header .button .text {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .c-buttons--section {
    gap: 0 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-buttons--section .button {
    margin: 0;
  }
}
.c-buttons--service {
  display: block;
}
.c-buttons--service .button {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}
.c-buttons--footer {
  display: block;
}
.c-buttons--footer .button {
  margin-top: 40px;
  margin-bottom: 20px;
}
.c-buttons--left .button {
  margin-left: 0;
  margin-right: auto;
}
.c-buttons--right .button {
  margin-left: auto;
  margin-right: 0;
}

.c-heading {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .c-heading {
    margin-bottom: 40px;
  }
}
.c-heading .eng {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #1D2088;
  padding-left: 1.6em;
  margin-bottom: 1em;
  position: relative;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
}
.c-heading .eng::before, .c-heading .eng::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: #1D2088;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-heading .eng::after {
  background: #E81A4B;
  left: 0.8em;
}
.c-heading .ja {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1D2088;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-heading .ja {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-heading .ja {
    font-size: 6.4vw;
  }
}
.c-heading .ja--small {
  font-size: 32px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-heading .ja--small {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-heading .ja--small {
    font-size: 4.8vw;
  }
}

.c-free-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #323232;
  margin-bottom: 40px;
  text-align: justify;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-free-text p {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-free-text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-free-text p {
    text-align: left !important;
  }
}

.c-table {
  margin-top: 0;
  margin-bottom: 40px;
}
.c-table dl {
  border-top: 1px solid #eee;
  color: #323232;
}
@media print, screen and (min-width: 768px) {
  .c-table dl {
    display: grid;
    grid-template-columns: 250px auto;
  }
}
.c-table dl dt,
.c-table dl dd {
  font-weight: 500;
  padding: 30px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-table dl dt,
  .c-table dl dd {
    padding: 20px;
  }
}
.c-table dl dt {
  background-color: #f5f5f5;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .c-table dl dt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 250px;
    text-align: center;
  }
}
.c-table dl dd {
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .c-table dl dd {
    flex-basis: calc(100% - 250px);
  }
}
.c-table dl dd a {
  color: #1d2088;
  text-decoration: underline;
}
.c-table dl dd a:hover {
  text-decoration: none;
}
.c-table .note-wrapper {
  margin-top: 1em;
}
.c-table .note-wrapper p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #323232;
}
.c-table .note-wrapper:empty {
  display: none;
  margin-top: 0;
}

.c-tag {
  display: inline-block;
  min-width: 82px;
  height: 26px;
  padding: 0px 10px;
  border-radius: 13px;
  border: solid 1px #1d2088;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  color: #1d2088;
}
.c-tag a {
  width: 100%;
  height: 100%;
  color: #1d2088;
  display: block;
  transition: opacity 0.3s ease;
}
.c-tag a:active, .c-tag a:hover {
  text-decoration: none;
}
.c-tag a:hover {
  opacity: 0.7;
}

.hero {
  position: relative;
}
.hero__container {
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero__container {
    width: 90%;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__container {
    padding: 0 3.125vw;
  }
}
.hero__image-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero__image-wrapper {
    height: 120vw;
    border-radius: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__image-wrapper {
    height: 46.875vw;
    border-radius: 40px;
  }
}
.hero__image {
  width: 100%;
  object-fit: cover;
}
.hero__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
  color: #fff;
  padding: 20px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 767px) {
  .hero__content {
    width: 80vw;
    padding: 4vw 5.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__content {
    padding: 36px 20px;
    left: 3.125vw;
  }
}
.hero__heading {
  font-size: 36px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: bold;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(to right, #1d2088 0%, #7a1d88 35%, #e81a4b 67%, #e81a4b 100%);
  -webkit-background-clip: text; /* 背景をテキストにクリップ */
  background-clip: text; /* 標準プロパティを追加 */
  color: transparent; /* テキストカラーを透明にする */
}
@media screen and (max-width: 767px) {
  .hero__heading {
    font-size: 8vw;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__heading {
    font-size: 48px;
  }
}

.c-features-list {
  margin-bottom: 30px;
  /* ------------------------
  features_image.module
  ------------------------ */
  /* ------------------------
  features_text.module
  ------------------------ */
}
.c-features-list--home .inner {
  background: transparent;
}
.c-features-list .item {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .c-features-list .item {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 50px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-features-list .item {
    gap: 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-features-list .item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-features-list .features-image {
    flex-basis: 550px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-features-list .features-image {
    flex-basis: 50%;
  }
}
.c-features-list .features-image img {
  width: 100%;
  height: auto;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .c-features-list .features-text {
    flex: 1;
  }
}
.c-features-list .features-text .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #1D2088;
  padding-bottom: 1em;
}
.c-features-list .features-text .subtitle .num {
  font-size: 20px;
  padding-left: 0.2em;
}
.c-features-list .features-text .title {
  font-size: 26px;
  font-weight: 700;
  color: #1D2088;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  padding-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .c-features-list .features-text .title {
    font-size: 4.8vw;
  }
}
.c-features-list .features-text .text {
  font-size: 16px;
  font-weight: 500;
  color: #323232;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-features-list .features-text .text {
    font-size: 12px;
  }
}

.c-page-header {
  position: relative;
}
.c-page-header .inner {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .c-page-header .inner {
    padding: 50px 0;
  }
}
.c-page-header .title {
  font-size: 36px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: bold;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(to right, #1d2088 0%, #7a1d88 35%, #e81a4b 67%, #e81a4b 100%);
  -webkit-background-clip: text; /* 背景をテキストにクリップ */
  background-clip: text; /* 標準プロパティを追加 */
  color: transparent; /* テキストカラーを透明にする */
  display: inline-block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-page-header .title {
    font-size: 7.4666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-page-header .title {
    font-size: 56px;
  }
}
.c-page-header .description {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .c-page-header .description {
    font-size: 12px;
  }
}

.c-sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9;
  font-family: sans-serif;
}
@media screen and (min-width: 1281px) {
  .c-sticky-buttons {
    display: none;
  }
}
.c-sticky-buttons .button {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0px;
  color: #000;
  flex: 1;
  height: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  position: relative;
}
.c-sticky-buttons .button a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  font-size: 15px;
  text-decoration: none;
  color: inherit;
}
.c-sticky-buttons .button--download {
  border: solid 1px #1d2088;
  background: #fff;
  color: #1e267d;
}
.c-sticky-buttons .button--download a {
  color: #1e267d;
}
.c-sticky-buttons .button--contact {
  border: 0;
  background-image: linear-gradient(to right, #1d2088 4%, #7a1d88 47%, #e81a4b 95%);
  color: #fff;
}
.c-sticky-buttons .button--contact a {
  color: #fff;
}
.c-sticky-buttons .tag {
  border: solid 1px #1d2088;
  height: 20px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 80%;
  min-width: 80px;
  max-width: 256px;
}
.c-sticky-buttons .button--download .tag {
  background: #1e267d;
  color: #fff;
}
.c-sticky-buttons .button--contact .tag {
  background: #fff;
  color: #1e267d;
}

.c-headline-underline {
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #1d2088;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.c-headline-underline .title {
  font-size: 24px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}

.c-headline-background {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 5px 10px;
  font-weight: bold;
  line-height: 1.5;
  background-color: #dae4fe;
}
.c-headline-background .title {
  font-size: 20px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}

.c-breadcrumb {
  font-size: 14px;
  color: #fff;
  background-image: linear-gradient(to right, #1d2088 2%, #7a1d88 52%, #e81a4b 99%);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    font-size: 12px;
  }
}
.c-breadcrumb .inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 0;
}
.c-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.c-breadcrumb a::after {
  content: "";
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
  transform-origin: center center;
  vertical-align: 1px;
}
.c-breadcrumb a:hover {
  text-decoration: underline;
}
.c-breadcrumb span {
  color: #fff;
  font-weight: 500;
}
.c-breadcrumb span:last-child::after {
  content: "";
}

.c-home-aboutus {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .c-home-aboutus .inner {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-home-aboutus .row {
    display: flex;
    flex-direction: row-reverse;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    width: auto;
    gap: 0 5.2083333333vw;
  }
}
@media screen and (max-width: 1280px) {
  .c-home-aboutus .row {
    gap: 0 2.6041666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-home-aboutus .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    max-width: 550px;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-home-aboutus .text-box {
    max-width: 100%;
    padding-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-home-aboutus .image {
    width: 50vw;
    height: 31.25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-home-aboutus .image {
    position: static;
    width: 100%;
  }
}
.c-home-aboutus .image img {
  position: relative;
  left: -30px;
}
@media screen and (max-width: 767px) {
  .c-home-aboutus .image img {
    left: -40px;
  }
}
.c-home-aboutus .lead {
  margin: 20px 0 30px;
  font-size: 26px;
  font-weight: bold;
  color: #1d2088;
}
.c-home-aboutus .text {
  margin: 30px 0 0;
  font-size: 16px;
  color: #323232;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-home-aboutus .text {
    font-size: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .c-service-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-menu {
    gap: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-menu {
    gap: 6.6666666667vw;
  }
}
.c-service-menu .item {
  position: relative;
  max-width: 575px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
.c-service-menu .item a {
  display: block;
  transition: all 0.3s ease-in-out;
}
.c-service-menu .item a:hover {
  opacity: 0.7;
}
.c-service-menu .item a:hover .text-box::after {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .c-service-menu .item a:hover .text-box::after {
    width: 3.4666666667vw;
    height: 2.9333333333vw;
    bottom: 10vw;
    right: 8.4vw;
  }
}
.c-service-menu .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/common/bg_service_menu.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.c-service-menu .text-box {
  color: #fff;
  position: absolute;
  z-index: 2;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 80px 110px 20px 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-menu .text-box {
    padding: 80px 110px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-service-menu .text-box {
    padding: 10.6666666667vw 16vw 4vw 5.3333333333vw;
  }
}
.c-service-menu .text-box::before, .c-service-menu .text-box::after {
  content: "";
  position: absolute;
}
.c-service-menu .text-box::before {
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 30px;
  border-radius: 50%;
  border: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .c-service-menu .text-box::before {
    width: 12vw;
    height: 12vw;
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
  }
}
.c-service-menu .text-box::after {
  width: 15px;
  height: 12px;
  bottom: 58px;
  right: 47px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  transition: right 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-service-menu .text-box::after {
    width: 3.4666666667vw;
    height: 2.9333333333vw;
    bottom: 10vw;
    right: 9.3333333333vw;
  }
}
.c-service-menu .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-menu .title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-menu .title {
    margin-bottom: 2vw;
    font-size: 5.3333333333vw;
  }
}
.c-service-menu .text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-menu .text {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-menu .text {
    line-height: 1.5;
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .c-service-menu .text {
    font-size: 12px;
  }
}
.c-service-header {
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .c-service-header .inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 29.1666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-header .image {
    width: 56.25vw;
    height: 29.1666666667vw;
  }
}
.c-service-header .image img {
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .c-service-header .text-box {
    padding: 4vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-header .text-box {
    flex: 1;
  }
}
.c-service-header .title {
  font-size: 36px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  font-weight: bold;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(to right, #1d2088 0%, #7a1d88 35%, #e81a4b 67%, #e81a4b 100%);
  -webkit-background-clip: text; /* 背景をテキストにクリップ */
  background-clip: text; /* 標準プロパティを追加 */
  color: transparent; /* テキストカラーを透明にする */
  display: inline-block;
  margin-bottom: 1.5625vw;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-header .title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-header .title {
    font-size: 7.4666666667vw;
  }
}
.c-service-header .lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-header .lead {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-header .lead {
    font-size: 12px;
  }
}
.c-service-header .catch-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-service-header .catch-wrap {
    width: 100%;
    margin-top: 2.6666666667vw;
    gap: 0 1.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-header .catch-wrap {
    width: 90%;
    margin-top: 50px;
    gap: 0 1.5625vw;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-header .catch-wrap {
    margin-top: 2.6041666667vw;
  }
}
.c-service-header .catch-wrap .catch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-basis: 33.33333%;
  font-weight: bold;
  text-align: center;
  color: #edb52e;
}
@media screen and (max-width: 767px) {
  .c-service-header .catch-wrap .catch {
    font-size: 2.6666666667vw;
    height: 11.4666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-header .catch-wrap .catch {
    font-size: 1.0416666667vw;
    height: 4.4791666667vw;
  }
}
.c-service-header .catch-wrap .catch::before, .c-service-header .catch-wrap .catch::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  background-size: contain;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/service/catch_deco.png");
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-service-header .catch-wrap .catch::before, .c-service-header .catch-wrap .catch::after {
    width: 5.3333333333vw;
    height: 11.4666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-header .catch-wrap .catch::before, .c-service-header .catch-wrap .catch::after {
    width: 2.0833333333vw;
    height: 4.4791666667vw;
  }
}
.c-service-header .catch-wrap .catch::before {
  left: 0;
}
.c-service-header .catch-wrap .catch::after {
  right: 0;
  transform: scaleX(-1);
}

.c-service-intro {
  max-width: 1200px;
  text-align: center;
}
.c-service-intro .problem-wrap {
  width: 100%;
  margin: 50px auto;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #f5f5f5;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .problem-wrap {
    padding: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .problem-wrap {
    margin: 6.6666666667vw auto;
    padding: 5.3333333333vw;
  }
}
.c-service-intro .problem-wrap::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/service/arrow.png");
  background-repeat: no-repeat;
  width: 150px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .c-service-intro .problem-wrap::after {
    bottom: -10.6666666667vw;
    width: 20vw;
    height: 4.6666666667vw;
  }
}
.c-service-intro .problem-text {
  font-size: 32px;
  font-weight: bold;
  color: #1d2088;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .problem-text {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .problem-text {
    font-size: 4.2666666667vw;
  }
}
.c-service-intro .problem-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .problem-list {
    gap: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .problem-list {
    flex-direction: column;
    gap: 4vw;
  }
}
.c-service-intro .problem-list.is-column-4 {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.c-service-intro .problem-list li {
  display: block;
  width: 360px;
  height: 82px;
  padding: 14px 0;
  border-radius: 10px;
  border: solid 1px #1d2088;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  color: #1d2088;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .problem-list li {
    width: 27.0833333333vw;
    height: auto;
    padding: 1.0416666667vw 0;
    font-size: 1.3541666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .problem-list li {
    width: 100%;
    height: auto;
    padding: 2vw 0;
    font-size: 3.7333333333vw;
  }
}
.c-service-intro .solution-text {
  position: relative;
  font-size: 40px;
  font-weight: bold;
  color: #1d2088;
  text-align: center;
  display: inline-block;
  margin: 50px auto;
  padding-bottom: 10px;
  border-bottom: 3px solid #1d2088;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-text {
    font-size: 3.7333333333vw;
  }
}
.c-service-intro .solution-text .strong {
  color: #e81a4b;
}
.c-service-intro .solution-text::before, .c-service-intro .solution-text::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -5px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-text::before, .c-service-intro .solution-text::after {
    width: 20vw;
    height: 4.6666666667vw;
  }
}
.c-service-intro .solution-text::before {
  width: 130px;
  height: 102px;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/service/ill_man.png");
  left: -160px;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-text::before {
    width: 6.7708333333vw;
    height: 5.3125vw;
    left: -7.2916666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-text::before {
    width: 17.3333333333vw;
    height: 13.6vw;
    left: -18.6666666667vw;
  }
}
.c-service-intro .solution-text::after {
  width: 86px;
  height: 98px;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/service/ill_woman.png");
  right: -116px;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-text::after {
    width: 4.4791666667vw;
    height: 5.1041666667vw;
    right: -5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-text::after {
    width: 11.4666666667vw;
    height: 13.0666666667vw;
    right: -12.8vw;
  }
}
.c-service-intro .solution-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-list {
    gap: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-list {
    gap: 4vw;
    margin-bottom: 0;
  }
}
.c-service-intro .solution-list.is-column-4 {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.c-service-intro .solution-list li {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  padding: 40px 0;
  box-shadow: 0 0 20px 0 rgba(232, 26, 75, 0.2);
  background-color: #fff;
  color: #e60012;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-list li {
    width: 27.0833333333vw;
    height: 27.0833333333vw;
    padding: 3.6458333333vw 0;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-list li {
    width: 66.6666666667vw;
    height: 66.6666666667vw;
    padding: 13.3333333333vw 0;
  }
}
.c-service-intro .solution-list li .num {
  display: block;
  margin: 0 auto;
  font-size: 34px;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-list li .num {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-list li .num {
    font-size: 4.2666666667vw;
  }
}
.c-service-intro .solution-list li .text {
  display: block;
  margin-top: 40px;
  font-size: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .c-service-intro .solution-list li .text {
    margin-top: 4.1666666667vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro .solution-list li .text {
    margin-top: 6.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.c-service-cta {
  border-radius: 20px;
  border: solid 1px #052785;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .c-service-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 80px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1280px) {
  .c-service-cta {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cta {
    padding: 4vw;
    margin-bottom: 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cta .content-wrap {
    width: 100%;
    gap: 1.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-cta .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 10px;
  }
}
.c-service-cta .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: #1d2088;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .c-service-cta .title {
    font-size: 2.7083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cta .title {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.c-service-cta .catch-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-service-cta .catch-wrap {
    justify-content: center;
    width: 100%;
    margin-top: 2.6666666667vw;
    margin-bottom: 8vw;
    gap: 0 1.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-cta .catch-wrap {
    width: 100%;
    margin-top: 1.0416666667vw;
    gap: 0 1.5625vw;
  }
}
.c-service-cta .catch-wrap .catch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-basis: 33.33333%;
  max-width: 190px;
  font-weight: bold;
  text-align: center;
  color: #edb52e;
  margin-bottom: 0;
  font-size: 20px;
  height: 86px;
}
@media print, screen and (min-width: 768px) {
  .c-service-cta .catch-wrap .catch {
    flex-basis: 12.5vw;
    font-size: 1.0416666667vw;
    height: 4.4791666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cta .catch-wrap .catch {
    font-size: 2.6666666667vw;
    height: 11.4666666667vw;
  }
}
.c-service-cta .catch-wrap .catch::before, .c-service-cta .catch-wrap .catch::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  background-size: contain;
  background-image: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/insightlead-theme/assets/images/service/catch_deco.png");
  background-repeat: no-repeat;
  width: 40px;
  height: 86px;
}
@media print, screen and (min-width: 768px) {
  .c-service-cta .catch-wrap .catch::before, .c-service-cta .catch-wrap .catch::after {
    width: 2.0833333333vw;
    height: 4.4791666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cta .catch-wrap .catch::before, .c-service-cta .catch-wrap .catch::after {
    width: 5.3333333333vw;
    height: 11.4666666667vw;
  }
}
.c-service-cta .catch-wrap .catch::before {
  left: 0;
}
.c-service-cta .catch-wrap .catch::after {
  right: 0;
  transform: scaleX(-1);
}
@media print, screen and (min-width: 1024px) {
  .c-service-cta .button-wrap {
    flex-basis: 400px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .c-service-cta .button-wrap {
    flex-basis: 360px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-cta .button-wrap {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cta .button-wrap {
    margin-top: 40px;
  }
}

@media print, screen and (min-width: 768px) {
  .c-service-cards {
    margin-top: 10px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cards {
    margin-bottom: 13.3333333333vw;
  }
}
.c-service-cards .grid {
  width: 100%;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-service-cards .grid {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-cards .grid {
    flex-wrap: wrap;
  }
}
.c-service-cards .card {
  position: relative;
  border-radius: 10px;
  background-color: #eff2fc;
}
@media screen and (max-width: 767px) {
  .c-service-cards .card {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-cards .card {
    flex-basis: calc(33.333% - 13.3333333333px);
  }
}
.c-service-cards .card .label {
  color: #1d2088;
  font-weight: 700;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-cards .card .label {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-cards .card .label {
    font-size: 4.2666666667vw;
  }
}
.c-service-cards--settings .card {
  padding: 20px 20px 20px 80px;
}
.c-service-cards--settings .card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 30px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55.509' height='58.882' viewBox='0 0 55.509 58.882'%3E%3Cpath id='gear-solid' d='M70.018,19.163a2.606,2.606,0,0,1-.736,2.83L64.3,26.525a21.925,21.925,0,0,1,0,5.843L69.281,36.9a2.606,2.606,0,0,1,.736,2.83A28.514,28.514,0,0,1,68.2,43.676l-.541.932A29.271,29.271,0,0,1,65.117,48.2a2.605,2.605,0,0,1-2.818.782l-6.407-2.036a22.134,22.134,0,0,1-5.061,2.922l-1.438,6.568A2.6,2.6,0,0,1,47.3,58.48a29.882,29.882,0,0,1-9.777,0,2.6,2.6,0,0,1-2.093-2.047l-1.438-6.568a22.134,22.134,0,0,1-5.061-2.922l-6.4,2.047a2.626,2.626,0,0,1-2.818-.782,29.27,29.27,0,0,1-2.542-3.589l-.541-.932a28.512,28.512,0,0,1-1.817-3.945,2.606,2.606,0,0,1,.736-2.83l4.981-4.532a22.566,22.566,0,0,1-.2-2.933,22.255,22.255,0,0,1,.2-2.922l-4.981-4.532a2.605,2.605,0,0,1-.736-2.83,28.512,28.512,0,0,1,1.817-3.945l.541-.932A29.271,29.271,0,0,1,19.716,10.7a2.605,2.605,0,0,1,2.818-.782l6.407,2.036A22.134,22.134,0,0,1,34,9.03L35.44,2.462A2.6,2.6,0,0,1,37.534.414,28.515,28.515,0,0,1,42.423,0a29.723,29.723,0,0,1,4.889.4A2.6,2.6,0,0,1,49.4,2.45l1.438,6.568A22.134,22.134,0,0,1,55.9,11.94L62.311,9.9a2.626,2.626,0,0,1,2.818.782,29.268,29.268,0,0,1,2.542,3.589l.541.932a28.513,28.513,0,0,1,1.817,3.945ZM42.423,38.649a9.2,9.2,0,1,0-9.2-9.2,9.2,9.2,0,0,0,9.2,9.2Z' transform='translate(-14.662)' fill='%231d2088'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.c-service-cards--price .grid {
  gap: 40px;
}
.c-service-cards--price .card {
  position: relative;
  display: inline-block;
  padding: 20px;
  text-align: center;
}
.c-service-cards--price .card:not(:last-child)::before, .c-service-cards--price .card:not(:last-child)::after {
  content: "";
  position: absolute;
  background-color: #323232;
}
.c-service-cards--price .card:not(:last-child)::before {
  width: 2px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .c-service-cards--price .card:not(:last-child)::before {
    right: 50%;
    bottom: -30px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-cards--price .card:not(:last-child)::before {
    right: -21px;
    top: calc(50% - 9px);
  }
}
.c-service-cards--price .card:not(:last-child)::after {
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .c-service-cards--price .card:not(:last-child)::after {
    right: calc(50% - 9px);
    bottom: -21px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-cards--price .card:not(:last-child)::after {
    right: -30px;
    top: 50%;
  }
}
.c-service-cards--price .card .label {
  color: #323232;
}
@media print, screen and (min-width: 768px) {
  .c-service-cards--price .card {
    flex-basis: calc(33.333% - 26.6666666667px);
  }
}

.c-service-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-service-steps {
    flex-direction: column;
    align-items: center;
  }
}
.c-service-steps::after {
  content: "";
  position: absolute;
  background-color: #e81a4b;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-service-steps::after {
    width: 2px;
    height: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-steps::after {
    width: 100%;
    max-width: 865px;
    height: 2px;
  }
}
.c-service-steps .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px 30px;
  z-index: 1;
  flex: 1;
  padding: 30px 15px;
  border-radius: 20px;
  border: solid 2px #1d2088;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-steps .item {
    padding: 1.5625vw 0.78125vw 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-steps .item {
    width: 100%;
    display: grid;
    gap: 0 4vw;
    padding: 4vw;
    align-items: center;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-steps .heading {
    min-height: 90px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c-service-steps .heading {
    grid-column: 1/2;
    grid-row: 1;
  }
}
.c-service-steps .heading p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #1d2088;
}
@media (max-width: 1400px) {
  .c-service-steps .heading p {
    font-size: 1.4583333333vw;
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-steps .heading p {
    font-size: 4.2666666667vw;
  }
}
.c-service-steps .heading .num {
  margin-bottom: 5px;
}
.c-service-steps .heading .title {
  margin-bottom: 0;
}
.c-service-steps .image {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .c-service-steps .image {
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    grid-column: 1/2;
    grid-row: 2;
  }
}
.c-service-steps .label-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 0;
  min-height: 0;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .c-service-steps .label-list {
    padding-top: 10px;
    margin-bottom: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-service-steps .label-list {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.c-service-steps .label {
  display: block;
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #dae4fe;
  color: #323232;
}
@media (max-width: 1400px) {
  .c-service-steps .label {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-steps .label {
    font-size: 3.2vw;
  }
}

.c-service-support {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 60px;
  list-style: none;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-service-support {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
}
@media print, screen and (min-width: 768px) {
  .c-service-support {
    grid-template-columns: 1fr 1fr;
  }
}
.c-service-support .item {
  padding: 20px;
  display: flex;
  gap: 16px;
  border-radius: 20px;
  border: solid 1px #1d2088;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-service-support .item {
    display: block;
  }
}
.c-service-support .item .image {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-service-support .item .image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.c-service-support .item .content {
  flex: 1;
}
.c-service-support .item .title {
  font-size: 22px;
  margin-bottom: 1.0416666667vw;
  font-weight: 600;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
  letter-spacing: 0;
}
@media (min-width: 1920px) {
  .c-service-support .item .title {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-support .item .title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-support .item .title {
    font-size: 4.2666666667vw;
  }
}
.c-service-support .item .text {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  line-height: 2;
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .c-service-support .item .text {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-service-support .item .text {
    font-size: 1.4583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-service-support .item .text {
    font-size: 12px;
  }
}

.c-beginner-feature {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: solid 1px #1d2088;
  background-color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-beginner-feature {
    display: block;
  }
}
.c-beginner-feature .content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-beginner-feature .image {
    margin-bottom: 20px;
  }
}
.c-beginner-feature .title {
  font-size: 22px;
  margin-bottom: 1.0416666667vw;
  font-weight: 600;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
  letter-spacing: 0;
}
@media (min-width: 1920px) {
  .c-beginner-feature .title {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-beginner-feature .title {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-beginner-feature .title {
    font-size: 4.2666666667vw;
  }
}
.c-beginner-feature .text {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  line-height: 2;
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .c-beginner-feature .text {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-beginner-feature .text {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-beginner-feature .text {
    font-size: 12px;
  }
}

.c-blog-list {
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .c-blog-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .c-blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.c-blog-list .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #1d2088;
  margin-bottom: 5px;
}
.c-blog-list .card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease;
  text-decoration: none !important;
  color: inherit;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .c-blog-list .card {
    max-width: 100%;
  }
}
.c-blog-list .card:focus {
  text-decoration: none !important;
}
.c-blog-list .card:hover {
  text-decoration: none !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.c-blog-list .card a:hover {
  text-decoration: none !important;
}
.c-blog-list .card .card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 436px;
}
.c-blog-list .card .card-inner:focus {
  text-decoration: none !important;
}
.c-blog-list .card .card-inner:hover {
  text-decoration: none !important;
  transform: translateY(-4px);
}
.c-blog-list .card .thumb {
  width: 100%;
  height: 250px;
}
.c-blog-list .card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-blog-list .card .text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 30px;
  flex: 1;
}
.c-blog-list .card .text-box--case, .c-blog-list .card .text-box--download, .c-blog-list .card .text-box--blog {
  padding: 20px 30px 50px;
}
.c-blog-list .card .text-box:active, .c-blog-list .card .text-box:focus, .c-blog-list .card .text-box:hover {
  text-decoration: none !important;
}
.c-blog-list .card .text-box .title {
  padding-bottom: 20px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  margin-bottom: auto;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
}
.c-blog-list .card .text-box .title:active, .c-blog-list .card .text-box .title:focus, .c-blog-list .card .text-box .title:hover {
  border: 0 !important;
  text-decoration: none !important;
}
.c-blog-list .card .tag-list {
  display: flex;
  gap: 10px;
}
.c-blog-list .card .tag-list--case, .c-blog-list .card .tag-list--download, .c-blog-list .card .tag-list--blog {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 3;
}
.c-blog-list .swiper {
  overflow: hidden;
}
.c-blog-list .swiper-wrapper {
  display: flex;
  align-items: flex-start;
}
.c-blog-list .swiper-slide {
  height: 100%;
}
.c-blog-list .company {
  margin-bottom: 10px;
}
.c-blog-list .company a {
  font-size: 16px;
  font-weight: 500;
}
.c-blog-list .jobtype-tag {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  min-width: 102px;
  height: 40px;
  overflow: hidden;
}
.c-blog-list .jobtype-tag a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0;
  background-color: #1d2088;
  color: #fff;
  text-align: center;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}
.c-blog-list .jobtype-tag a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.c-blog-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #323232;
}
.c-blog-text a {
  text-decoration: underline;
}
.c-blog-text a:hover {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .c-blog-point {
    margin-top: 10px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .c-blog-point {
    margin-bottom: 6.6666666667vw;
  }
}
.c-blog-point .item {
  position: relative;
  margin-top: 20px;
  padding: 15px 20px 15px 60px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-blog-point .item {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .c-blog-point .item {
    flex-basis: calc(33.333% - 13.3333333333px);
  }
}
.c-blog-point .item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 20px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.c-blog-point--grey .item {
  background-color: #f5f5f5;
  color: #1d2088;
}
.c-blog-point--grey .item::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%3E%0A%20%20%3Cpath%20id%3D%22circle-check-regular%22%20d%3D%22M12.5%2C2.344A10.156%2C10.156%2C0%2C1%2C1%2C2.344%2C12.5%2C10.156%2C10.156%2C0%2C0%2C1%2C12.5%2C2.344ZM12.5%2C25A12.5%2C12.5%2C0%2C1%2C0%2C0%2C12.5%2C12.5%2C12.5%2C0%2C0%2C0%2C12.5%2C25Zm5.518-14.795A1.17%2C1.17%2C0%2C0%2C0%2C16.362%2C8.55l-5.42%2C5.42L8.647%2C11.675A1.17%2C1.17%2C0%2C0%2C0%2C6.992%2C13.33l3.125%2C3.125a1.167%2C1.167%2C0%2C0%2C0%2C1.655%2C0Z%22%20fill%3D%22%231d2088%22%2F%3E%0A%3C%2Fsvg%3E");
}
.c-blog-point--blue .item {
  background-color: #1d2088;
  color: #ffffff;
}
.c-blog-point--blue .item::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%3E%0A%20%20%3Cpath%20id%3D%22circle-check-regular%22%20d%3D%22M12.5%2C2.344A10.156%2C10.156%2C0%2C1%2C1%2C2.344%2C12.5%2C10.156%2C10.156%2C0%2C0%2C1%2C12.5%2C2.344ZM12.5%2C25A12.5%2C12.5%2C0%2C1%2C0%2C0%2C12.5%2C12.5%2C12.5%2C0%2C0%2C0%2C12.5%2C25Zm5.518-14.795A1.17%2C1.17%2C0%2C0%2C0%2C16.362%2C8.55l-5.42%2C5.42L8.647%2C11.675A1.17%2C1.17%2C0%2C0%2C0%2C6.992%2C13.33l3.125%2C3.125a1.167%2C1.167%2C0%2C0%2C0%2C1.655%2C0Z%22%20fill%3D%22%23ffffff%22%2F%3E%0A%3C%2Fsvg%3E");
}

.c-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px;
  font-family: "Helvetica Neue", sans-serif;
}
.c-blog-pagination .link {
  text-decoration: none;
  color: #6c6c6c;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}
.c-blog-pagination .link:hover {
  color: #1a237e;
}
.c-blog-pagination .link--active {
  color: #1a237e;
  font-weight: bold;
}
.c-blog-pagination .ellipsis {
  color: #999;
  font-size: 18px;
}
.c-blog-pagination .link-arrow {
  position: relative;
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 1px #1d2088;
  margin: 0 10px;
}
.c-blog-pagination .link-arrow::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12.863px;
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%231d2088'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  transition: right 0.3s ease-in-out;
}
.c-blog-pagination .link-arrow--next:hover::after {
  right: calc(50% - 5px);
}
.c-blog-pagination .link-arrow--prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cg transform='scale(-1,1) translate(-15,0)'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%231d2088'/%3E%3C/g%3E%3C/svg%3E");
}
.c-blog-pagination .link-arrow--prev:hover::after {
  right: calc(50% + 5px);
}

.c-swiper-buttons .swiper-button-next,
.c-swiper-buttons .swiper-button-prev {
  position: absolute;
  top: calc(50% - 24px);
  transform: translateY(-50%);
  opacity: 0.6;
  background-color: #1d2088;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
}
.c-swiper-buttons .swiper-button-next:after,
.c-swiper-buttons .swiper-button-prev:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12.863px;
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-swiper-buttons .swiper-button-prev {
  left: -24px;
  transition: left 0.3s ease-in-out;
}
.c-swiper-buttons .swiper-button-prev:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cg transform='scale(-1,1) translate(-15,0)'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.c-swiper-buttons .swiper-button-prev:hover {
  left: -28px;
}
.c-swiper-buttons .swiper-button-next {
  right: -24px;
  transition: right 0.3s ease-in-out;
}
.c-swiper-buttons .swiper-button-next:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%23ffffff'/%3E%3C/svg%3E");
}
.c-swiper-buttons .swiper-button-next:hover {
  right: -28px;
}

.c-seminar-head {
  margin-bottom: 0;
}
.c-seminar-head .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #1d2088;
}
.c-seminar-head .title {
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  margin: 10px 0 15px;
  font-size: 26px;
  line-height: 1.5;
  color: #333;
}

.c-seminar-info {
  margin: 0;
  padding: 0;
}
.c-seminar-info .item {
  position: relative;
  margin-top: 10px;
  display: flex;
  border: 1px solid #eff2fc;
  border-radius: 10px;
  overflow: hidden;
  color: #323232;
}
@media screen and (max-width: 767px) {
  .c-seminar-info .item {
    display: block;
  }
}
.c-seminar-info .item .course-name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  background-color: #eff2fc;
}
@media screen and (max-width: 767px) {
  .c-seminar-info .item .course-name {
    width: 100%;
    padding: 20px 0;
  }
}
.c-seminar-info .item .course-name .name {
  margin-bottom: 0;
}
.c-seminar-info .item .course-detail {
  flex: 1;
  padding: 20px;
}
.c-seminar-info .item .course-detail .headline {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.46;
  letter-spacing: normal;
  text-align: left;
  color: #1d2088;
}
.c-seminar-info .item .course-detail .instructor {
  margin-bottom: 0;
}
.c-seminar-info .item .course-detail .detail {
  line-height: 2;
}

.c-seminar-instructor .item {
  position: relative;
  margin-top: 10px;
  display: flex;
  overflow: hidden;
  color: #323232;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-seminar-instructor .item {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .c-seminar-instructor .item .instructor-thumb {
    max-width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .c-seminar-instructor .item .instructor-thumb {
    margin: 0 auto;
  }
}
.c-seminar-instructor .item .instructor-detail {
  flex: 1;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-seminar-instructor .item .instructor-detail {
    padding: 20px 0 0;
  }
}
.c-seminar-instructor .item .instructor-detail .position {
  margin-bottom: 5px;
}
.c-seminar-instructor .item .instructor-detail .detail {
  line-height: 2;
}

.c-seminar-pdf .pdf-thumb {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
  .c-download-list {
    margin-top: 10px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .c-download-list {
    margin-bottom: 6.6666666667vw;
  }
}
.c-download-list .item {
  position: relative;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .c-download-list .item {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .c-download-list .item {
    flex-basis: calc(33.333% - 13.3333333333px);
  }
}
.c-download-list .item::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #1d2088;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.c-faq-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .c-faq-links {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 374px) {
  .c-faq-links {
    grid-template-columns: 1fr;
  }
}
.c-faq-links .item {
  width: 100%;
  height: 68px;
  border-radius: 34px;
  color: #1d2088;
  border: solid 1px #1d2088;
  background-color: #fff;
  margin: 0 13px 0 0;
}
.c-faq-links .item .link {
  display: block;
  font-size: 18px;
  color: #1d2088;
  width: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
}
.c-faq-links .item .link:hover {
  text-decoration: none;
}
.c-faq-links .item .link::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 13px;
  top: 28px;
  right: 25px;
  z-index: 1;
  transition: top 0.3s ease-in-out;
  transform: rotate(90deg);
  transform-origin: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12.863' viewBox='0 0 15 12.863'%3E%3Cpath id='arrow-right-solid' d='M14.686,71.113a1.073,1.073,0,0,0,0-1.517L9.329,64.239a1.073,1.073,0,0,0-1.517,1.517l3.533,3.529H1.071a1.071,1.071,0,1,0,0,2.143h10.27L7.815,74.957a1.073,1.073,0,0,0,1.517,1.517l5.357-5.357Z' transform='translate(0 -63.925)' fill='%231d2088'/%3E%3C/svg%3E");
}
.c-faq-links .item .link:hover::after {
  top: 34px;
}

.c-faq-item {
  margin-bottom: 20px;
}
.c-faq-item .question {
  width: 100%;
  min-height: 75px;
  margin: 0;
  padding: 20px 60px 20px 70px;
  border-radius: 10px;
  background-color: #dae4fe;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000;
}
.c-faq-item .question::before {
  position: absolute;
  top: 10px;
  left: 30px;
  content: "Q";
  font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #1d2088;
}
.c-faq-item .question .question-toggle {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 26px;
  right: 20px;
  margin-left: 8px;
  cursor: pointer;
}
.c-faq-item .question .question-toggle::before, .c-faq-item .question .question-toggle::after {
  content: "";
  position: absolute;
  background: #1d2088;
  width: 25px;
  height: 1px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
  transform: translate(-50%, -50%);
}
.c-faq-item .question .question-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-faq-item .question .question-toggle.is-open::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.c-faq-item .answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, margin-top 0.4s ease;
  padding: 0 60px 0 70px;
  margin-top: 0;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  position: relative;
  color: #000;
}
.c-faq-item .answer.is-open {
  display: block;
  max-height: 500px;
  padding: 20px 60px 20px 70px;
  margin-top: 0.5em;
}
.c-faq-item .answer::before {
  position: absolute;
  top: 10px;
  left: 30px;
  content: "A";
  font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #e81a4b;
}

.c-sitemap-parts {
  border-bottom: 1px solid #1d2088;
  padding-bottom: 10px;
  padding-left: 10px;
}
.c-sitemap-parts .heading {
  font-weight: bold;
  line-height: 1.5;
}
.c-sitemap-parts .heading a {
  font-size: 24px;
  font-family: "Noto Sans JP", MyYuGothicM, YuGothic, Meiryo, sans-serif;
  color: #1d2088;
}
.c-sitemap-parts .list .label {
  margin-bottom: 5px;
}

.c-float-banner {
  position: fixed;
  bottom: 20px;
  z-index: 8;
  width: 100%;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-float-banner {
    right: 20px;
    bottom: 66px;
    max-width: 300px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-float-banner {
    max-width: 300px;
    right: 20px;
  }
}
.c-float-banner__wrap {
  position: relative;
}
.c-float-banner__wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.c-float-banner__close {
  position: absolute;
  top: -15px;
  right: 10px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  z-index: 1001;
}
.c-float-banner__close:focus, .c-float-banner__close:active, .c-float-banner__close:hover {
  color: #000;
  background: #fff;
  border: none;
  outline: none;
}

@media print, screen and (min-width: 768px) {
  .u-dn-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-dn-sp {
    display: none;
  }
}

.u-cf::after {
  clear: both;
  content: "";
  display: block;
}