@charset "UTF-8";
:root {
  --color-primary: #0080cb;
  --color-secondary: #191a2e;
  --color-body: #4d4d4d;
  --color-white: #fff;
  --color-black: #000;
  --color-black2: #1a1a2d;
  --color-black3: #1a1a2d;
  --color-blue: #0090c6;
  --color-blue2: #0080cb;
  --color-rgb-blue2: 0, 128, 203;
  --color-red: #f00;
  --color-yellow: #fbb03b;
  --color-dark: #ccc;
  --color-dark2: #cdcdcd;
  --color-dark3: #b3b3b3;
  --color-dark4: #fafafa;
  --color-dark5: #f2f2f2;
  --color-dark6: #808080;
  --color-dark7: #e6e6e6;
}

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* 1 */
  font-size: 1em;
  font-family: monospace, monospace;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  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 {
  /* 1 */
  font-size: 1em;
  font-family: monospace, monospace;
  /* 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  font-family: inherit;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*---------- font  ----------*/
/* noto-sans-cyrillic-ext-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-cyrillic-ext-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-cyrillic-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-devanagari-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-greek-ext-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-greek-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-vietnamese-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-latin-ext-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-latin-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-100-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-cyrillic-ext-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-cyrillic-ext-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-cyrillic-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-devanagari-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-greek-ext-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-greek-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-vietnamese-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-latin-ext-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-latin-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-300-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-cyrillic-ext-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-cyrillic-ext-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-cyrillic-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-devanagari-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-greek-ext-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-greek-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-vietnamese-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-latin-ext-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-latin-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-400-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-cyrillic-ext-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-cyrillic-ext-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-cyrillic-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-devanagari-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-greek-ext-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-greek-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-vietnamese-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-latin-ext-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-latin-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-500-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-cyrillic-ext-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-cyrillic-ext-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-cyrillic-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-devanagari-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-greek-ext-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-greek-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-vietnamese-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-latin-ext-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-latin-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-600-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-cyrillic-ext-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-cyrillic-ext-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-cyrillic-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-devanagari-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-greek-ext-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-greek-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-vietnamese-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-latin-ext-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-latin-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-700-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-cyrillic-ext-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-cyrillic-ext-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-ext-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* noto-sans-cyrillic-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-cyrillic-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-cyrillic-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* noto-sans-devanagari-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-devanagari-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-devanagari-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* noto-sans-greek-ext-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-greek-ext-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-ext-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+1F00-1FFF;
}
/* noto-sans-greek-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-greek-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-greek-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* noto-sans-vietnamese-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-vietnamese-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-vietnamese-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* noto-sans-latin-ext-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-latin-ext-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-ext-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* noto-sans-latin-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-latin-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-latin-800-normal.woff) format("woff");
  font-family: "Noto Sans";
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* noto-sans-jp-japanese-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-jp-japanese-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-100-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-jp-japanese-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-jp-japanese-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-300-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-jp-japanese-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-jp-japanese-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-400-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-jp-japanese-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-jp-japanese-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-500-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-jp-japanese-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-jp-japanese-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-600-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-jp-japanese-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-jp-japanese-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-700-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-jp-japanese-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-jp-japanese-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-jp-japanese-800-normal.woff) format("woff");
  font-family: "Noto Sans JP";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-100-normal */
@font-face {
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-100-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-100-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-300-normal */
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-300-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-300-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-400-normal */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-400-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-400-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-500-normal */
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-500-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-500-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-600-normal */
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-600-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-600-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-700-normal */
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-700-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-700-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/* noto-sans-sc-chinese-simplified-800-normal */
@font-face {
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/noto-sans-sc-chinese-simplified-800-normal.woff2) format("woff2"), url(../../fonts/noto-sans-sc-chinese-simplified-800-normal.woff) format("woff");
  font-family: "Noto Sans SC";
  font-display: swap;
}
/*

@font-face {
	font-family: 'Noto Sans CJK';
	font-style: normal;
	font-weight: 400;
	src: url('_assets/fonts/notosans/NotoSansCJKjp-Regular.woff2') format('woff2'),
		url('_assets/fonts/notosans/NotoSansCJKjp-Regular.woff') format('woff'),
		url('_assets/fonts/notosans/NotoSansCJKjp-Regular.ttf') format('truetype'),
		url('_assets/fonts/notosans/NotoSansCJKjp-Regular.eot') format('embedded-opentype');
}

@font-face {
	font-family: 'Noto Sans CJK';
	font-style: normal;
	font-weight: 500;
	src: url('_assets/fonts/notosans/NotoSansCJKjp-Medium.woff2') format('woff2'),
		url('_assets/fonts/notosans/NotoSansCJKjp-Medium.woff') format('woff'),
		url('_assets/fonts/notosans/NotoSansCJKjp-Medium.ttf') format('truetype'),
		url('_assets/fonts/notosans/NotoSansCJKjp-Medium.eot') format('embedded-opentype');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('_assets/fonts/roboto/Roboto-Regular.woff2') format('woff2'),
		url('_assets/fonts/roboto/Roboto-Regular.woff') format('woff'),
		url('_assets/fonts/roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	src: url('_assets/fonts/roboto/Roboto-Medium.woff2') format('woff2'),
		url('_assets/fonts/roboto/Roboto-Medium.woff') format('woff'),
		url('_assets/fonts/roboto/Roboto-Medium.ttf') format('truetype');
}
		*/
/*----------  common  ----------*/
html {
  font-size: 62.5%;
}
html[lang=en-GB] body {
  font-family: "Noto Sans", arial, sans-serif;
}
html[lang=zh-CN] body, html[lang=zh-Hans] body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  background: #fff;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body.is-hidden {
  position: fixed; /* Crucial for iOS */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*----------  header  ----------*/
.l-header {
  min-width: 1280px;
  /* Vary between 1280px and 1366px */
  padding: 2.2rem 5rem 0.6rem 4.6rem;
}

/*----------  content  ----------*/
.l-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-main-column {
  margin: 0 auto;
}
.l-grid {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 300px;
  grid-template-areas: "primary aside";
  gap: 0 4rem;
}
.l-grid > .l-primary {
  grid-area: primary;
}
.l-grid > .l-aside {
  grid-area: aside;
}
.l-primary {
  min-width: 1280px;
}
.l-page {
  padding-top: 3rem;
  padding-bottom: 12rem;
}
.l-content {
  width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
}
.l-overflow {
  min-width: 1280px;
  overflow-x: hidden;
}
.l-overflow .l-overflow-inner {
  z-index: 1;
  position: relative;
  width: 100%;
}
.l-overflow .l-overflow-inner::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-color: var(--color-black);
  content: "";
}

/*----------  gnav  ----------*/
.gnav {
  display: flex;
  justify-content: flex-end;
}
.gnav > li:not(:first-child) {
  margin-left: 2rem;
}
.gnav-submenu > li:not(:first-child) {
  margin-top: 0.4rem;
}

/*----------  sidebar  ----------*/
.l-sidebar {
  width: 300px;
}

/*----------  footer  ----------*/
.l-footer {
  width: 100%;
  min-width: 1280px;
  margin-top: auto;
}
.l-footer-wrap {
  margin: 0 auto;
}
.l-footer-copyright {
  font-size: 1.2rem;
}

/*----------  background  ----------*/
.u-bg-primary {
  background-color: var(--color-primary);
}
.u-bg-secondary {
  background-color: var(--color-secondary);
}
.u-bg-tertiary {
  background-color: var(--color-tertiary);
}
.u-bg-black {
  background-color: var(--color-black);
}
.u-bg-black-2 {
  background-color: var(--color-black2);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-yellow {
  background-color: var(--color-yellow);
}
.u-bg-dark {
  background-color: var(--color-dark);
}
.u-bg-dark-2 {
  background-color: var(--color-dark2);
}
.u-bg-dark-3 {
  background-color: var(--color-dark3);
}
.u-bg-dark02 {
  background-color: #f1f3f3;
}
.u-bg-blue {
  background-color: #e3eaef;
}
.u-bg-darklight {
  background-color: var(--color-darklight);
}
.u-bg-check {
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20328.6%20112%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20url(%23d)%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st2%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23f2f2f2%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%20%20%3Cpattern%20id%3D%22d%22%20x%3D%220%22%20y%3D%220%22%20width%3D%224%22%20height%3D%224%22%20patternTransform%3D%22translate(-72.4%20-15529)%20scale(1%20-1)%22%20patternUnits%3D%22userSpaceOnUse%22%20viewBox%3D%220%200%204%204%22%3E%0A%20%20%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st1%22%20width%3D%224%22%20height%3D%224%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st1%22%20width%3D%224%22%20height%3D%224%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%223%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%223%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%221%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fpattern%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Crect%20class%3D%22st0%22%20x%3D%220%22%20width%3D%22328.5%22%20height%3D%22112%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') repeat top center var(--color-white);
  background-size: 32.85rem auto;
  /*
  background-image: repeating-linear-gradient(
  		45deg,
  		rgba(242, 242, 242, 0.5) 0px,
  		rgba(242, 242, 242, 0.5) 1px,
  		rgba(0, 0, 0, 0) 0px,
  		rgba(0, 0, 0, 0) 4px
  	),
  	repeating-linear-gradient(
  		135deg,
  		rgba(242, 242, 242, 0.5) 0px,
  		rgba(242, 242, 242, 0.5) 1px,
  		rgba(0, 0, 0, 0) 0px,
  		rgba(0, 0, 0, 0) 4px
  	);
  */
}

/*----------  font  ----------*/
.u-font-light {
  font-weight: 300;
}
.u-font-400 {
  font-weight: 400 !important;
}
.u-font-medium {
  font-weight: 500 !important;
}
.u-font-bold {
  font-weight: bold !important;
}
.u-font-600 {
  font-weight: 600;
}
.u-font-700 {
  font-weight: 700;
}
.u-font-900 {
  font-weight: 900;
}
.u-font-roboto {
  font-style: normal;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.u-font-notosans {
  font-style: normal;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.u-font-notosans-jp {
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans JP";
}

.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-left {
  text-align: left;
}
.u-text-primary {
  color: var(--color-primary);
}
.u-text-blue {
  color: var(--color-blue);
}
.u-text-black {
  color: var(--color-black);
}
.u-text-white {
  color: var(--color-white);
}
.u-text-red {
  color: var(--color-red);
}
.u-text-dark {
  color: var(--color-dark);
}
.u-text-dark-6 {
  color: var(--color-dark6);
}
.u-text-darkblue {
  color: var(--color-darkblue);
}
.u-text-ellipsis {
  text-overflow: ellipsis;
}
.u-text-underline-blue {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-color: var(--color-blue);
  text-decoration-color: var(--color-blue);
  text-underline-offset: 1.3rem;
}
.u-text-ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.u-text-ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.u-text-uppercase {
  text-transform: uppercase;
}

/*----------  image  ----------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  margin: 0;
}

.u-image-full {
  width: 100%;
}
.u-image-aspect-1 {
  aspect-ratio: 1/1;
}
.u-image-cover {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

/*----------  link  ----------*/
a {
  color: #4d4d4d;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: #0080cb;
}
a.u-underline {
  text-decoration: underline;
}
a.u-underline:hover {
  text-decoration: none;
}
a.u-link-primary {
  color: var(--color-primary);
}
a.u-link-arrow {
  z-index: 1;
  position: relative;
  padding-left: 1.8rem;
}
a.u-link-arrow::before {
  z-index: 1;
  position: absolute;
  top: 0.6rem;
  left: 0;
  aspect-ratio: 5/9;
  width: 0.5rem;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
a.u-link-more {
  z-index: 1;
  position: relative;
  padding-right: 3.6rem;
  font-size: 2rem;
}
html[lang=zh-CN] a.u-link-more, html[lang=zh-Hans] a.u-link-more {
  font-family: inherit;
}

a.u-link-more::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 26.35/8;
  width: 2.635rem;
  height: auto;
  min-height: 0;
  margin: auto 0;
  background-color: var(--color-body);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
a.u-link-more:hover::before {
  background-color: var(--color-primary);
}
a.u-link-blank {
  display: inline-flex;
  z-index: 1;
  position: relative;
  padding-right: 2.2rem;
  gap: 0 0.2rem;
}
a.u-link-blank::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 1.4rem;
  min-width: 0;
  height: auto;
  margin: auto 0;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22uuid-700a6583-b6c2-44bb-b517-bd83926e240d%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20id%3D%22uuid-cba58cbd-6ce4-4471-9b14-92c1045df5ce%22%3E%3Cpath%20d%3D%22M3.38%2C0v14.62h14.62V0H3.38ZM16.59%2C13.22H4.78V1.41h11.81v11.81Z%22%20fill%3D%22%230090c6%22%2F%3E%3Cpolygon%20points%3D%221.41%2016.59%201.41%2010.41%201.41%204.78%201.41%203.38%200%203.38%200%2018%2014.62%2018%2014.62%2016.59%2013.22%2016.59%201.41%2016.59%22%20fill%3D%22%230090c6%22%2F%3E%3Cpolygon%20points%3D%228.18%2011%2012.33%206.85%2012.33%209.84%2013.73%209.84%2013.73%204.45%208.35%204.45%208.35%205.86%2011.33%205.86%207.19%2010%208.18%2011%22%20fill%3D%22%230090c6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22uuid-700a6583-b6c2-44bb-b517-bd83926e240d%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20id%3D%22uuid-cba58cbd-6ce4-4471-9b14-92c1045df5ce%22%3E%3Cpath%20d%3D%22M3.38%2C0v14.62h14.62V0H3.38ZM16.59%2C13.22H4.78V1.41h11.81v11.81Z%22%20fill%3D%22%230090c6%22%2F%3E%3Cpolygon%20points%3D%221.41%2016.59%201.41%2010.41%201.41%204.78%201.41%203.38%200%203.38%200%2018%2014.62%2018%2014.62%2016.59%2013.22%2016.59%201.41%2016.59%22%20fill%3D%22%230090c6%22%2F%3E%3Cpolygon%20points%3D%228.18%2011%2012.33%206.85%2012.33%209.84%2013.73%209.84%2013.73%204.45%208.35%204.45%208.35%205.86%2011.33%205.86%207.19%2010%208.18%2011%22%20fill%3D%22%230090c6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
a.u-link-pdf {
  display: inline-flex;
  z-index: 1;
  position: relative;
  padding-right: 3.8rem;
  gap: 0 0.2rem;
}
a.u-link-pdf.--report {
  padding-right: 5.4rem;
}
a.u-link-pdf::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 25.22/30;
  width: 2.5rem;
  min-width: 0;
  height: auto;
  margin: auto 0;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.2%2030%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M24.2%2C10v-1.8l-.5-.5L16.5.5l-.5-.5H5.8C3.2%2C0%2C1%2C2.1%2C1%2C4.8v5.3H0v10h1v5.2c0%2C2.6%2C2.1%2C4.8%2C4.8%2C4.8h13.6c2.6%2C0%2C4.8-2.1%2C4.8-4.8v-5.2h1v-9.9s-1%2C0-1%2C0ZM22.4%2C25.2c0%2C1.7-1.4%2C3-3%2C3H5.8c-1.7%2C0-3-1.4-3-3v-5.2h19.6v5.2ZM5.7%2C18v-5.9h1.9c.4%2C0%2C.8%2C0%2C1.2.2.4.1.6.3.8.6.2.3.3.6.3%2C1.1s-.1.8-.3%2C1.1c-.2.3-.5.5-.8.6s-.7.2-1.1.2h-.8v2.1h-1.2ZM10.9%2C18v-5.9h1.6c.6%2C0%2C1.1.1%2C1.6.3s.8.5%2C1%2C1c.2.4.4%2C1%2C.4%2C1.6s-.1%2C1.2-.4%2C1.6c-.2.4-.6.8-1%2C1-.4.2-.9.3-1.5.3%2C0%2C0-1.7%2C0-1.7%2C0ZM19.8%2C14.6v1h-2.1v2.4h-1.2v-5.9h3.6v1h-2.4v1.5h2.1%2C0ZM22.4%2C10H2.8v-5.2c0-1.7%2C1.3-3%2C3-3h9.5v4.7c0%2C1.4%2C1.1%2C2.5%2C2.5%2C2.5h4.6v1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C13.9c-.1-.3-.4-.5-.6-.6-.3-.1-.6-.2-.9-.2h-.4v4h.4c.4%2C0%2C.7%2C0%2C.9-.2.3-.1.5-.4.6-.6.1-.3.2-.7.2-1.2s0-.9-.2-1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8.4%2C14.7c.2-.2.3-.4.3-.8s-.1-.6-.3-.7c-.2-.1-.5-.2-.9-.2h-.7v1.9h.7c.4%2C0%2C.7%2C0%2C.9-.2h0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.2%2030%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M24.2%2C10v-1.8l-.5-.5L16.5.5l-.5-.5H5.8C3.2%2C0%2C1%2C2.1%2C1%2C4.8v5.3H0v10h1v5.2c0%2C2.6%2C2.1%2C4.8%2C4.8%2C4.8h13.6c2.6%2C0%2C4.8-2.1%2C4.8-4.8v-5.2h1v-9.9s-1%2C0-1%2C0ZM22.4%2C25.2c0%2C1.7-1.4%2C3-3%2C3H5.8c-1.7%2C0-3-1.4-3-3v-5.2h19.6v5.2ZM5.7%2C18v-5.9h1.9c.4%2C0%2C.8%2C0%2C1.2.2.4.1.6.3.8.6.2.3.3.6.3%2C1.1s-.1.8-.3%2C1.1c-.2.3-.5.5-.8.6s-.7.2-1.1.2h-.8v2.1h-1.2ZM10.9%2C18v-5.9h1.6c.6%2C0%2C1.1.1%2C1.6.3s.8.5%2C1%2C1c.2.4.4%2C1%2C.4%2C1.6s-.1%2C1.2-.4%2C1.6c-.2.4-.6.8-1%2C1-.4.2-.9.3-1.5.3%2C0%2C0-1.7%2C0-1.7%2C0ZM19.8%2C14.6v1h-2.1v2.4h-1.2v-5.9h3.6v1h-2.4v1.5h2.1%2C0ZM22.4%2C10H2.8v-5.2c0-1.7%2C1.3-3%2C3-3h9.5v4.7c0%2C1.4%2C1.1%2C2.5%2C2.5%2C2.5h4.6v1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C13.9c-.1-.3-.4-.5-.6-.6-.3-.1-.6-.2-.9-.2h-.4v4h.4c.4%2C0%2C.7%2C0%2C.9-.2.3-.1.5-.4.6-.6.1-.3.2-.7.2-1.2s0-.9-.2-1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8.4%2C14.7c.2-.2.3-.4.3-.8s-.1-.6-.3-.7c-.2-.1-.5-.2-.9-.2h-.7v1.9h.7c.4%2C0%2C.7%2C0%2C.9-.2h0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
a.u-link-max-w270 {
  width: 100%;
  max-width: 27rem;
}

/*----------  media query ----------*/
/*----------  radius  ----------*/
.u-radius-0 {
  border-radius: 0;
}
.u-radius-1 {
  border-radius: 10px;
}
.u-radius-2 {
  border-radius: 20px;
}
.u-radius-3 {
  border-radius: 32px;
}
.u-radius-circle {
  border-radius: 100vh;
}
.u-radius-distorted {
  border-radius: 20% 0;
}
.u-radius-distorted-2 {
  border-radius: 2rem 0;
}
.u-radius-distorted-3 {
  border-radius: 3rem 0;
}
.u-radius-distorted-4 {
  border-radius: 4rem 0;
}
.u-radius-distorted-6 {
  border-radius: 6rem 0;
}

/*----------  repeat  ----------*/
.u-repeat-1, .u-repeat-2, .u-repeat-3, .u-repeat-4, .u-repeat-5, .u-repeat-6 {
  display: grid;
}
.u-repeat-1 {
  grid-template-columns: repeat(1, 1fr);
}
.u-repeat-2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-repeat-3 {
  grid-template-columns: repeat(3, 1fr);
}
.u-repeat-4 {
  grid-template-columns: repeat(4, 1fr);
}
.u-repeat-5 {
  grid-template-columns: repeat(5, 1fr);
}
.u-repeat-6 {
  grid-template-columns: repeat(6, 1fr);
}
.u-repeat-gap-1 {
  gap: 1rem;
}
.u-repeat-gap-2 {
  gap: 2rem;
}

/*----------  space  ----------*/
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-mt-1 {
  margin-top: 1rem !important;
}

.u-mb-1 {
  margin-bottom: 1rem !important;
}

.u-pt-1 {
  padding-top: 1rem !important;
}

.u-pb-1 {
  padding-bottom: 1rem !important;
}

.u-mt-2 {
  margin-top: 2rem !important;
}

.u-mb-2 {
  margin-bottom: 2rem !important;
}

.u-pt-2 {
  padding-top: 2rem !important;
}

.u-pb-2 {
  padding-bottom: 2rem !important;
}

.u-mt-3 {
  margin-top: 3rem !important;
}

.u-mb-3 {
  margin-bottom: 3rem !important;
}

.u-pt-3 {
  padding-top: 3rem !important;
}

.u-pb-3 {
  padding-bottom: 3rem !important;
}

.u-mt-4 {
  margin-top: 4rem !important;
}

.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-pt-4 {
  padding-top: 4rem !important;
}

.u-pb-4 {
  padding-bottom: 4rem !important;
}

.u-mt-5 {
  margin-top: 5rem !important;
}

.u-mb-5 {
  margin-bottom: 5rem !important;
}

.u-pt-5 {
  padding-top: 5rem !important;
}

.u-pb-5 {
  padding-bottom: 5rem !important;
}

.u-mt-6 {
  margin-top: 6rem !important;
}

.u-mb-6 {
  margin-bottom: 6rem !important;
}

.u-pt-6 {
  padding-top: 6rem !important;
}

.u-pb-6 {
  padding-bottom: 6rem !important;
}

.u-mt-7 {
  margin-top: 7rem !important;
}

.u-mb-7 {
  margin-bottom: 7rem !important;
}

.u-pt-7 {
  padding-top: 7rem !important;
}

.u-pb-7 {
  padding-bottom: 7rem !important;
}

.u-mt-8 {
  margin-top: 8rem !important;
}

.u-mb-8 {
  margin-bottom: 8rem !important;
}

.u-pt-8 {
  padding-top: 8rem !important;
}

.u-pb-8 {
  padding-bottom: 8rem !important;
}

.u-mt-9 {
  margin-top: 9rem !important;
}

.u-mb-9 {
  margin-bottom: 9rem !important;
}

.u-pt-9 {
  padding-top: 9rem !important;
}

.u-pb-9 {
  padding-bottom: 9rem !important;
}

.u-mt-10 {
  margin-top: 10rem !important;
}

.u-mb-10 {
  margin-bottom: 10rem !important;
}

.u-pt-10 {
  padding-top: 10rem !important;
}

.u-pb-10 {
  padding-bottom: 10rem !important;
}

.u-mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.u-mt-auto {
  margin-top: auto;
}

/*----------  adminbar  ----------*/
.admin-bar .l-header {
  /*	&.is-active {
  			.l-header-menu {
  				top: 32px;

  				@media screen and (max-width: 782px) {
  					top: 0;
  				}
  			}
  		}
  */
}
.admin-bar .l-header.is-sticky {
  top: 32px;
}

/*----------  breadcrumb  ----------*/
.c-breadcrumb {
  margin-top: 1.6rem;
  margin-bottom: 1rem;
}
.c-breadcrumb-lists {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 auto;
  overflow-y: auto;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-breadcrumb-list {
  display: inline;
  position: relative;
}
.c-breadcrumb-list:not(:first-child) {
  margin-left: 1.25rem;
}
.c-breadcrumb-list:not(:first-child)::before {
  position: absolute;
  top: 0.1rem;
  bottom: 0;
  left: -1.3rem;
  aspect-ratio: 1/1;
  width: 1.6rem;
  min-width: 0;
  height: auto;
  margin: auto 0;
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.7.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%208)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%234a4a4a%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cpath%20class%3D%22st1%22%20d%3D%22M0%2C16V0h16v16H0Z%22%2F%3E%0A%20%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10%2C8.4c0%2C.1%2C0%2C.3-.1.4l-3%2C3c-.2.2-.5.2-.7%2C0s-.2-.5%2C0-.7l2.6-2.6-2.6-2.6c-.2-.2-.2-.5%2C0-.7s.5-.2.7%2C0l3%2C3s.1.2.1.4v-.2Z%22%2F%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  background-size: 100% auto;
  content: "";
}
.c-breadcrumb-link {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-breadcrumb-link:hover {
  text-decoration: none;
}

/*----------  button  ----------*/
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  border-radius: 0.4rem;
  background-color: #efefef;
  color: #4d4d4d;
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  /*
  &::before {
  	content: "";
  	display: inline-block;
  	height: 1.6rem;
  	vertical-align: middle;
  }
  */
}
.c-button:disabled {
  cursor: not-allowed;
}
.c-button:disabled:hover {
  opacity: inherit;
}
.c-button.button-black {
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button.button-black-3 {
  background-color: var(--color-black3);
  color: var(--color-white);
}
.c-button.button-black-3.--pdf > .btn-label, .c-button.button-black-3.--dxf > .btn-label {
  z-index: 1;
  position: relative;
  width: 100%;
  padding: 0 4.6rem;
  text-align: center;
}
.c-button.button-black-3.--pdf > .btn-label::before, .c-button.button-black-3.--dxf > .btn-label::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 50.44/60;
  width: 2.522rem;
  min-width: 0;
  height: auto;
  background-color: var(--color-white);
  content: "";
}
.c-button.button-black-3.--pdf > .btn-label::before {
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.2%2030%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M24.2%2C10v-1.8l-.5-.5L16.5.5l-.5-.5H5.8C3.2%2C0%2C1%2C2.1%2C1%2C4.8v5.3H0v10h1v5.2c0%2C2.6%2C2.1%2C4.8%2C4.8%2C4.8h13.6c2.6%2C0%2C4.8-2.1%2C4.8-4.8v-5.2h1v-9.9s-1%2C0-1%2C0ZM22.4%2C25.2c0%2C1.7-1.4%2C3-3%2C3H5.8c-1.7%2C0-3-1.4-3-3v-5.2h19.6v5.2ZM5.7%2C18v-5.9h1.9c.4%2C0%2C.8%2C0%2C1.2.2.4.1.6.3.8.6.2.3.3.6.3%2C1.1s-.1.8-.3%2C1.1c-.2.3-.5.5-.8.6s-.7.2-1.1.2h-.8v2.1h-1.2ZM10.9%2C18v-5.9h1.6c.6%2C0%2C1.1.1%2C1.6.3s.8.5%2C1%2C1c.2.4.4%2C1%2C.4%2C1.6s-.1%2C1.2-.4%2C1.6c-.2.4-.6.8-1%2C1-.4.2-.9.3-1.5.3%2C0%2C0-1.7%2C0-1.7%2C0ZM19.8%2C14.6v1h-2.1v2.4h-1.2v-5.9h3.6v1h-2.4v1.5h2.1%2C0ZM22.4%2C10H2.8v-5.2c0-1.7%2C1.3-3%2C3-3h9.5v4.7c0%2C1.4%2C1.1%2C2.5%2C2.5%2C2.5h4.6v1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C13.9c-.1-.3-.4-.5-.6-.6-.3-.1-.6-.2-.9-.2h-.4v4h.4c.4%2C0%2C.7%2C0%2C.9-.2.3-.1.5-.4.6-.6.1-.3.2-.7.2-1.2s0-.9-.2-1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8.4%2C14.7c.2-.2.3-.4.3-.8s-.1-.6-.3-.7c-.2-.1-.5-.2-.9-.2h-.7v1.9h.7c.4%2C0%2C.7%2C0%2C.9-.2h0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.2%2030%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M24.2%2C10v-1.8l-.5-.5L16.5.5l-.5-.5H5.8C3.2%2C0%2C1%2C2.1%2C1%2C4.8v5.3H0v10h1v5.2c0%2C2.6%2C2.1%2C4.8%2C4.8%2C4.8h13.6c2.6%2C0%2C4.8-2.1%2C4.8-4.8v-5.2h1v-9.9s-1%2C0-1%2C0ZM22.4%2C25.2c0%2C1.7-1.4%2C3-3%2C3H5.8c-1.7%2C0-3-1.4-3-3v-5.2h19.6v5.2ZM5.7%2C18v-5.9h1.9c.4%2C0%2C.8%2C0%2C1.2.2.4.1.6.3.8.6.2.3.3.6.3%2C1.1s-.1.8-.3%2C1.1c-.2.3-.5.5-.8.6s-.7.2-1.1.2h-.8v2.1h-1.2ZM10.9%2C18v-5.9h1.6c.6%2C0%2C1.1.1%2C1.6.3s.8.5%2C1%2C1c.2.4.4%2C1%2C.4%2C1.6s-.1%2C1.2-.4%2C1.6c-.2.4-.6.8-1%2C1-.4.2-.9.3-1.5.3%2C0%2C0-1.7%2C0-1.7%2C0ZM19.8%2C14.6v1h-2.1v2.4h-1.2v-5.9h3.6v1h-2.4v1.5h2.1%2C0ZM22.4%2C10H2.8v-5.2c0-1.7%2C1.3-3%2C3-3h9.5v4.7c0%2C1.4%2C1.1%2C2.5%2C2.5%2C2.5h4.6v1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C13.9c-.1-.3-.4-.5-.6-.6-.3-.1-.6-.2-.9-.2h-.4v4h.4c.4%2C0%2C.7%2C0%2C.9-.2.3-.1.5-.4.6-.6.1-.3.2-.7.2-1.2s0-.9-.2-1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8.4%2C14.7c.2-.2.3-.4.3-.8s-.1-.6-.3-.7c-.2-.1-.5-.2-.9-.2h-.7v1.9h.7c.4%2C0%2C.7%2C0%2C.9-.2h0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-black-3.--dxf > .btn-label::before {
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2054%2064.3%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M51.8%2C21.5v-3.9l-1.1-1.1L35.4%2C1.1l-1.1-1.1H12.4C6.8%2C0%2C2.2%2C4.6%2C2.2%2C10.2v11.3H0v21.3h2.2v11.2c0%2C5.6%2C4.6%2C10.2%2C10.2%2C10.2h29.1c5.6%2C0%2C10.2-4.6%2C10.2-10.2v-11.2h2.2v-21.3s-2.2%2C0-2.2%2C0ZM48%2C54c0%2C3.6-2.9%2C6.4-6.4%2C6.4H12.4c-3.6%2C0-6.4-2.9-6.4-6.4v-11.2h42s0%2C11.2%2C0%2C11.2ZM12.1%2C38.5v-12.5h3.4c1.3%2C0%2C2.4.2%2C3.3.7s1.6%2C1.1%2C2.1%2C2c.5.9.8%2C2.1.8%2C3.5s-.2%2C2.6-.8%2C3.5c-.5.9-1.2%2C1.6-2.1%2C2.1s-2%2C.7-3.2.7h-3.6%2C0ZM23.1%2C26h2.8l1.2%2C2.6c.1.3.3.6.4.9.1.3.3.7.5%2C1.1h0c.2-.4.3-.7.4-1.1.1-.3.3-.6.4-.9l1.2-2.6h2.6l-3.3%2C6.2%2C3.5%2C6.3h-2.8l-1.4-2.8c-.1-.3-.3-.6-.5-1-.2-.3-.3-.7-.5-1.1h0c-.2.4-.3.8-.5%2C1.1-.1.3-.3.7-.5%2C1l-1.3%2C2.8h-2.6l3.5-6.5-3.3-6.1h0ZM41.8%2C31.3v2.1h-4.5v5.1h-2.5v-12.5h7.7v2.1h-5.2v3.3h4.5ZM48%2C21.5H6v-11.2c0-3.6%2C2.9-6.4%2C6.4-6.4h20.2v10c0%2C3%2C2.4%2C5.4%2C5.4%2C5.4h10v2.4h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M18.7%2C29.7c-.3-.6-.7-1.1-1.3-1.3s-1.2-.4-2-.4h-.8v8.5h.8c.8%2C0%2C1.5-.1%2C2-.4s1-.8%2C1.3-1.4.5-1.5.5-2.5-.1-1.8-.5-2.5Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2054%2064.3%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M51.8%2C21.5v-3.9l-1.1-1.1L35.4%2C1.1l-1.1-1.1H12.4C6.8%2C0%2C2.2%2C4.6%2C2.2%2C10.2v11.3H0v21.3h2.2v11.2c0%2C5.6%2C4.6%2C10.2%2C10.2%2C10.2h29.1c5.6%2C0%2C10.2-4.6%2C10.2-10.2v-11.2h2.2v-21.3s-2.2%2C0-2.2%2C0ZM48%2C54c0%2C3.6-2.9%2C6.4-6.4%2C6.4H12.4c-3.6%2C0-6.4-2.9-6.4-6.4v-11.2h42s0%2C11.2%2C0%2C11.2ZM12.1%2C38.5v-12.5h3.4c1.3%2C0%2C2.4.2%2C3.3.7s1.6%2C1.1%2C2.1%2C2c.5.9.8%2C2.1.8%2C3.5s-.2%2C2.6-.8%2C3.5c-.5.9-1.2%2C1.6-2.1%2C2.1s-2%2C.7-3.2.7h-3.6%2C0ZM23.1%2C26h2.8l1.2%2C2.6c.1.3.3.6.4.9.1.3.3.7.5%2C1.1h0c.2-.4.3-.7.4-1.1.1-.3.3-.6.4-.9l1.2-2.6h2.6l-3.3%2C6.2%2C3.5%2C6.3h-2.8l-1.4-2.8c-.1-.3-.3-.6-.5-1-.2-.3-.3-.7-.5-1.1h0c-.2.4-.3.8-.5%2C1.1-.1.3-.3.7-.5%2C1l-1.3%2C2.8h-2.6l3.5-6.5-3.3-6.1h0ZM41.8%2C31.3v2.1h-4.5v5.1h-2.5v-12.5h7.7v2.1h-5.2v3.3h4.5ZM48%2C21.5H6v-11.2c0-3.6%2C2.9-6.4%2C6.4-6.4h20.2v10c0%2C3%2C2.4%2C5.4%2C5.4%2C5.4h10v2.4h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M18.7%2C29.7c-.3-.6-.7-1.1-1.3-1.3s-1.2-.4-2-.4h-.8v8.5h.8c.8%2C0%2C1.5-.1%2C2-.4s1-.8%2C1.3-1.4.5-1.5.5-2.5-.1-1.8-.5-2.5Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.c-button.button-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.c-button.button-blue.--sp-search {
  width: 6.4rem;
  border-radius: 0 0.2rem 0.2rem 0;
}
html[lang=en-GB] .c-button.button-blue.--sp-search {
  width: 7.2rem;
}

.c-button.button-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.c-button.button-white {
  background-color: #fff;
  color: var(--color-secondary);
}
.c-button.button-dark {
  background-color: #999;
  color: #fff;
}
.c-button.button-dark-2 {
  background-color: var(--color-dark2);
  color: var(--color-black2);
}
.c-button.button-dark-2-outline {
  width: 100%;
  max-width: 24rem;
  padding: 1rem 2rem;
  border: 0.1rem solid var(--color-dark2);
  background-color: transparent;
  color: var(--color-black2);
}
.c-button.button-dark-2-outline > .button-label {
  z-index: 1;
  position: relative;
  padding-left: 3.8rem;
}
.c-button.button-dark-2-outline > .button-label::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  min-width: 0;
  background-color: var(--color-dark5);
  content: "";
}
.c-button.button-dark-2-outline.--store, .c-button.button-dark-2-outline.--contact {
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-button.button-dark-2-outline.--store:hover, .c-button.button-dark-2-outline.--contact:hover {
  border-color: var(--color-blue2);
  background-color: var(--color-blue2);
  opacity: 1;
}
.c-button.button-dark-2-outline.--store > .button-label::before {
  aspect-ratio: 25/20;
  width: 2.531rem;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-dark-2-outline.--contact > .button-label::before {
  aspect-ratio: 27/20;
  width: 2.6rem;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-dark-5 {
  background-color: var(--color-dark5);
  color: var(--color-black2);
}
.c-button.button-dark-5-outline {
  width: 100%;
  max-width: 24rem;
  padding: 1rem 2rem;
  border: 0.1rem solid var(--color-dark5);
  background-color: transparent;
  color: var(--color-black2);
}
.c-button.button-dark-5-outline > .button-label {
  z-index: 1;
  position: relative;
  padding-left: 3.8rem;
}
.c-button.button-dark-5-outline > .button-label::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  min-width: 0;
  background-color: var(--color-dark5);
  content: "";
}
.c-button.button-dark-5-outline.--store, .c-button.button-dark-5-outline.--contact {
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-button.button-dark-5-outline.--store:hover, .c-button.button-dark-5-outline.--contact:hover {
  border-color: var(--color-blue2);
  background-color: var(--color-blue2);
  opacity: 1;
}
.c-button.button-dark-5-outline.--store > .button-label::before {
  aspect-ratio: 25/20;
  width: 2.531rem;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-dark-5-outline.--contact > .button-label::before {
  aspect-ratio: 27/20;
  width: 2.6rem;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-dark-6 {
  background-color: var(--color-dark6);
  color: var(--color-dark5);
}
.c-button.button-dark-6-outline {
  width: 100%;
  max-width: 24rem;
  padding: 1rem 2rem;
  border: 0.1rem solid var(--color-dark6);
  background-color: transparent;
  color: var(--color-dark5);
}
.c-button.button-dark-6-outline > .button-label {
  z-index: 1;
  position: relative;
  padding-left: 3.8rem;
}
.c-button.button-dark-6-outline > .button-label::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  min-width: 0;
  background-color: var(--color-dark5);
  content: "";
}
.c-button.button-dark-6-outline.--store, .c-button.button-dark-6-outline.--contact {
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.c-button.button-dark-6-outline.--store:hover, .c-button.button-dark-6-outline.--contact:hover {
  border-color: var(--color-blue2);
  background-color: var(--color-blue2);
  opacity: 1;
}
.c-button.button-dark-6-outline.--store > .button-label::before {
  aspect-ratio: 25/20;
  width: 2.531rem;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-dark-6-outline.--contact > .button-label::before {
  aspect-ratio: 27/20;
  width: 2.6rem;
  height: auto;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-button.button-icon-r {
  position: relative;
}
.c-button.button-icon-r::after {
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  width: 0.635rem;
  height: 1rem;
  margin: auto 0;
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22uuid-354d93e5-8dd0-4e8c-bc21-f6083e63a49f%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.47%22%20height%3D%2210.79%22%20viewBox%3D%220%200%207.47%2010.79%22%3E%3Cg%20id%3D%22uuid-f725b5f6-a17f-45d4-ac34-523d3ca83059%22%3E%3Cpolyline%20points%3D%22.31%2010.39%206.66%205.39%20.31%20.39%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  background-size: auto 100%;
  content: "";
}
.c-button.button-radius {
  border-radius: 100vh;
}
.c-button.button-radius.--white.--outline {
  border: 0.1rem solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}
.c-button.button-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black2);
}
.c-button.size-small {
  width: 100%;
  max-width: 14rem;
  min-height: 3.2rem;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
}
.c-button.size-medium {
  width: 100%;
  max-width: 28.4rem;
  min-height: 5rem;
  font-weight: 500;
}
.c-button.size-large {
  width: 100%;
  max-width: 30rem;
  min-height: 6rem;
  font-weight: 500;
}
.c-button.size-xlarge {
  width: 100%;
  max-width: 38.2rem;
  min-height: 6rem;
  font-weight: 500;
}
.c-button.size-xxlarge {
  width: 100%;
  min-height: 6rem;
  font-weight: 500;
}
.c-button.size-w100 {
  width: 100%;
}
.c-button.size-mw200 {
  max-width: 20rem;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1rem;
}

/*----------  company-nav  ----------*/
.c-company-nav-lists {
  overflow: hidden;
  border: 0.1rem solid var(--color-dark);
  border-radius: 0.8rem;
}
.c-company-nav-list:not(:first-child) {
  z-index: 1;
  position: relative;
}
.c-company-nav-list:not(:first-child)::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: 100%;
  background-color: var(--color-dark);
  content: "";
}
.c-company-nav-list.is-active .c-company-nav-link {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: bold;
}
.c-company-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 0.4rem;
  color: var(--color-body);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.c-company-nav-link:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  opacity: 1;
}
.c-company-nav-link--label {
  z-index: 1;
  position: relative;
  padding: 0 0 0 1.6rem;
}
html[lang=en-GB] .c-company-nav-link--label {
  padding: 0 0 0 1.2rem;
  font-size: 1.5rem;
}

.c-company-nav-link--label::before {
  position: absolute;
  top: 1rem;
  left: 0;
  aspect-ratio: 5/9;
  width: 0.5rem;
  min-width: 0;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

/*----------  catalog  ----------*/
.c-catalog-link:hover {
  color: var(--color-body);
}
.c-catalog-figure {
  margin-top: 1.6rem;
  text-align: center;
}
.c-catalog-nav {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  gap: 2rem 0;
}

.c-catalog-file-link--label {
  z-index: 1;
  position: relative;
  width: 100%;
  padding: 0 5.4rem 0 0;
  text-align: center;
}
.c-catalog-file-link--label::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 50.44/60;
  width: 2.522rem;
  min-width: 0;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.2%2030%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M24.2%2C10v-1.8l-.5-.5L16.5.5l-.5-.5H5.8C3.2%2C0%2C1%2C2.1%2C1%2C4.8v5.3H0v10h1v5.2c0%2C2.6%2C2.1%2C4.8%2C4.8%2C4.8h13.6c2.6%2C0%2C4.8-2.1%2C4.8-4.8v-5.2h1v-9.9s-1%2C0-1%2C0ZM22.4%2C25.2c0%2C1.7-1.4%2C3-3%2C3H5.8c-1.7%2C0-3-1.4-3-3v-5.2h19.6v5.2ZM5.7%2C18v-5.9h1.9c.4%2C0%2C.8%2C0%2C1.2.2.4.1.6.3.8.6.2.3.3.6.3%2C1.1s-.1.8-.3%2C1.1c-.2.3-.5.5-.8.6s-.7.2-1.1.2h-.8v2.1h-1.2ZM10.9%2C18v-5.9h1.6c.6%2C0%2C1.1.1%2C1.6.3s.8.5%2C1%2C1c.2.4.4%2C1%2C.4%2C1.6s-.1%2C1.2-.4%2C1.6c-.2.4-.6.8-1%2C1-.4.2-.9.3-1.5.3%2C0%2C0-1.7%2C0-1.7%2C0ZM19.8%2C14.6v1h-2.1v2.4h-1.2v-5.9h3.6v1h-2.4v1.5h2.1%2C0ZM22.4%2C10H2.8v-5.2c0-1.7%2C1.3-3%2C3-3h9.5v4.7c0%2C1.4%2C1.1%2C2.5%2C2.5%2C2.5h4.6v1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C13.9c-.1-.3-.4-.5-.6-.6-.3-.1-.6-.2-.9-.2h-.4v4h.4c.4%2C0%2C.7%2C0%2C.9-.2.3-.1.5-.4.6-.6.1-.3.2-.7.2-1.2s0-.9-.2-1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8.4%2C14.7c.2-.2.3-.4.3-.8s-.1-.6-.3-.7c-.2-.1-.5-.2-.9-.2h-.7v1.9h.7c.4%2C0%2C.7%2C0%2C.9-.2h0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.2%2030%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M24.2%2C10v-1.8l-.5-.5L16.5.5l-.5-.5H5.8C3.2%2C0%2C1%2C2.1%2C1%2C4.8v5.3H0v10h1v5.2c0%2C2.6%2C2.1%2C4.8%2C4.8%2C4.8h13.6c2.6%2C0%2C4.8-2.1%2C4.8-4.8v-5.2h1v-9.9s-1%2C0-1%2C0ZM22.4%2C25.2c0%2C1.7-1.4%2C3-3%2C3H5.8c-1.7%2C0-3-1.4-3-3v-5.2h19.6v5.2ZM5.7%2C18v-5.9h1.9c.4%2C0%2C.8%2C0%2C1.2.2.4.1.6.3.8.6.2.3.3.6.3%2C1.1s-.1.8-.3%2C1.1c-.2.3-.5.5-.8.6s-.7.2-1.1.2h-.8v2.1h-1.2ZM10.9%2C18v-5.9h1.6c.6%2C0%2C1.1.1%2C1.6.3s.8.5%2C1%2C1c.2.4.4%2C1%2C.4%2C1.6s-.1%2C1.2-.4%2C1.6c-.2.4-.6.8-1%2C1-.4.2-.9.3-1.5.3%2C0%2C0-1.7%2C0-1.7%2C0ZM19.8%2C14.6v1h-2.1v2.4h-1.2v-5.9h3.6v1h-2.4v1.5h2.1%2C0ZM22.4%2C10H2.8v-5.2c0-1.7%2C1.3-3%2C3-3h9.5v4.7c0%2C1.4%2C1.1%2C2.5%2C2.5%2C2.5h4.6v1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M14%2C13.9c-.1-.3-.4-.5-.6-.6-.3-.1-.6-.2-.9-.2h-.4v4h.4c.4%2C0%2C.7%2C0%2C.9-.2.3-.1.5-.4.6-.6.1-.3.2-.7.2-1.2s0-.9-.2-1.1h0Z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M8.4%2C14.7c.2-.2.3-.4.3-.8s-.1-.6-.3-.7c-.2-.1-.5-.2-.9-.2h-.7v1.9h.7c.4%2C0%2C.7%2C0%2C.9-.2h0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

/*----------  definition  ----------*/
.c-dl-1 {
  display: grid;
  grid-template-columns: [key] minmax(10.6rem, -webkit-min-content) [value] 1fr;
  grid-template-columns: [key] minmax(10.6rem, min-content) [value] 1fr;
  gap: 0 1.6rem;
}
.c-dl-1-dt {
  z-index: 1;
  position: relative;
  grid-column: key;
  font-weight: 400;
  white-space: nowrap;
}
.c-dl-1-dt::after {
  position: absolute;
  top: 0;
  right: -0.4rem;
  bottom: 0;
  margin: auto 0;
  content: ":";
}
.c-dl-1-dd {
  grid-column: value;
  margin-left: 0;
}
.c-dl-2 {
  display: grid;
  grid-template-columns: [key] minmax(12rem, -webkit-min-content) [value] 1fr;
  grid-template-columns: [key] minmax(12rem, min-content) [value] 1fr;
  margin: 0;
  gap: 0 1.6rem;
}
.c-dl-2-dt {
  z-index: 1;
  position: relative;
  grid-column: key;
  font-weight: 500;
  white-space: nowrap;
}
.c-dl-2-dt::after {
  position: absolute;
  top: 0;
  right: -1rem;
  bottom: 0;
  margin: auto 0;
  content: ":";
}
.c-dl-2-dd {
  grid-column: value;
  margin-left: 0;
}
.c-dl-3 {
  display: grid;
  grid-template-columns: [key] minmax(13rem, -webkit-min-content) [value] 1fr;
  grid-template-columns: [key] minmax(13rem, min-content) [value] 1fr;
  margin: 0;
  gap: 0.8rem 3rem;
}
.c-dl-3 dt {
  grid-column: key;
  font-weight: 500;
}
.c-dl-3 dd {
  z-index: 1;
  position: relative;
  grid-column: value;
  margin-left: 0;
}
.c-dl-3 dd::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  margin: auto 0;
  content: ":";
  font-weight: 500;
}
.c-dl-4 {
  margin: 0;
}
.c-dl-4 dt {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.8rem;
}
.c-dl-4 dt:not(:first-child) {
  margin-top: 2.8rem;
}
.c-dl-4 dd {
  margin: 0;
}

.entry-content {
  color: var(--color-dark6);
  line-height: 1.75;
}
.entry-content :root {
  --color-primary: #0080cb;
  --color-secondary: #191a2e;
  --color-body: #4d4d4d;
  --color-white: #fff;
  --color-black: #000;
  --color-black2: #1a1a2d;
  --color-black3: #1a1a2d;
  --color-blue: #0090c6;
  --color-blue2: #0080cb;
  --color-rgb-blue2: 0, 128, 203;
  --color-red: #f00;
  --color-yellow: #fbb03b;
  --color-dark: #ccc;
  --color-dark2: #cdcdcd;
  --color-dark3: #b3b3b3;
  --color-dark4: #fafafa;
  --color-dark5: #f2f2f2;
  --color-dark6: #808080;
  --color-dark7: #e6e6e6;
}
.entry-content body {
  /* font-family: 'Noto Sans JP', YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;*/
  padding: 0 4rem 4rem 4rem;
  background: #fff;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: break-word;
}
.entry-content body .editor-post-title {
  max-width: 1280px;
  margin: 1.2rem auto 3.2rem;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 0.1rem solid #707070;
  font-size: 3.2rem;
}
.entry-content body .wp-block-post-content {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}
.entry-content body.description {
  padding: 0;
}
.entry-content {
  /*----------  editor  ----------*/
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  clear: both;
}
.entry-content h1:not(:first-child),
.entry-content h2:not(:first-child),
.entry-content h3:not(:first-child),
.entry-content h4:not(:first-child),
.entry-content h5:not(:first-child),
.entry-content h6:not(:first-child) {
  margin: 2.8rem 0;
}
.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
  margin-top: 0;
}
.entry-content p:not(:first-child),
.entry-content ul:not(:first-child),
.entry-content ol:not(:first-child),
.entry-content figure:not(:first-child),
.entry-content .wp-block-media-text:not(:first-child) {
  margin: 2.8rem 0;
}
.entry-content p:first-child,
.entry-content ul:first-child,
.entry-content ol:first-child,
.entry-content figure:first-child,
.entry-content .wp-block-media-text:first-child {
  margin-top: 0;
}
.entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3) {
  z-index: 1;
  position: relative;
  padding-bottom: 1rem;
  color: var(--color-body);
  font-weight: 500;
  font-size: 3rem;
}
.entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3)::before, .entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  content: "";
}
.entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3)::before {
  z-index: 1;
  width: 24.8rem;
  border-right: 0.1rem solid var(--color-white);
  background-color: var(--color-blue2);
}
.entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3)::after {
  z-index: 0;
  width: 100%;
  background-color: var(--color-dark);
}
.entry-content .wp-block-heading {
  /*
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-body);

  @include breakpoint.down(medium) {
  	font-size: 2.2rem;
  }
  &::before,
  &::after {
  	content: '';

  	position: absolute;
  	left: 0;
  	bottom: 0;
  	height: 0.2rem;
  }

  &::before {
  	width: 24.8rem;
  	z-index: 1;
  	background-color: var(--color-blue2);
  	border-right: 0.1rem solid var(--color-white);

  	@include breakpoint.down(medium) {
  		width: 12.4rem;
  	}
  }

  &::after {
  	width: 100%;
  	z-index: 0;
  	background-color: var(--color-dark);
  }*/
}
.entry-content .is-style-heading-type-1 {
  z-index: 1;
  position: relative;
  padding-bottom: 1rem;
  color: var(--color-body);
  font-weight: 500;
  font-size: 3rem;
}
.entry-content .is-style-heading-type-1::before, .entry-content .is-style-heading-type-1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  content: "";
}
.entry-content .is-style-heading-type-1::before {
  z-index: 1;
  width: 24.8rem;
  border-right: 0.1rem solid var(--color-white);
  background-color: var(--color-blue2);
}
.entry-content .is-style-heading-type-1::after {
  z-index: 0;
  width: 100%;
  background-color: var(--color-dark);
}
.entry-content .is-style-heading-type-2 {
  z-index: 1;
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-body);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.2;
}
.entry-content .is-style-heading-type-2::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background-color: var(--color-primary);
  content: "";
}
.entry-content .is-style-heading-type-3 {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.8rem;
}
.entry-content .is-style-heading-type {
  /*
  &-4 {
  	font-size: 2.2rem;
  	position: relative;
  	z-index: 1;
  	padding: 0 0.2rem 0.8rem;
  	letter-spacing: get_em(2.2, 22);
  	line-height: calc(28 / 22);

  	@include breakpoint.down(medium) {
  		font-size: 1.4rem;
  	}

  	&::before {
  		content: '';
  		width: 100%;
  		background-color: #ede3be;
  		height: 0.3rem;
  		position: absolute;
  		z-index: 0;
  		left: 0;
  		bottom: 0;
  		border-radius: 0.4rem;
  	}
  }

  &-5 {
  	font-size: 2.2rem;
  	position: relative;
  	z-index: 1;
  	padding: 0 0 0 1rem;
  	letter-spacing: get_em(2.2, 22);
  	line-height: calc(28 / 22);

  	@include breakpoint.down(medium) {
  		font-size: 1.5rem;
  	}

  	&::before {
  		content: '';
  		width: 0.4rem;
  		background-color: #009128;
  		height: calc(100% - 0.4rem);
  		position: absolute;
  		z-index: 0;
  		left: 0;
  		bottom: 0;
  		top: 0.2rem;
  		margin: auto 0;
  	}
  }

  &-6 {
  	font-size: 2rem;
  	position: relative;
  	z-index: 1;
  	padding: 0 0 0 2rem;
  	letter-spacing: get_em(2, 20);
  	line-height: calc(28 / 20);

  	@include breakpoint.down(medium) {
  		font-size: 1.5rem;
  	}

  	&::before {
  		content: '';
  		width: 1.5rem;
  		background-color: #009128;
  		height: 0.1rem;
  		position: absolute;
  		z-index: 0;
  		left: 0;
  		bottom: 0;
  		top: 0;
  		margin: auto 0;
  	}
  }
  	*/
}
.entry-content ol li:not(:first-child),
.entry-content ul li:not(:first-child) {
  margin-top: 0.4rem;
}
.entry-content ol {
  padding-left: 0;
  list-style-type: none;
  counter-reset: item;
}
.entry-content ol li {
  position: relative;
  padding-left: 2.4rem;
}
.entry-content ol li::before {
  position: absolute;
  top: 0;
  left: 0.4rem;
  content: counter(item) ".";
  color: --color-dark6;
  font-weight: 400;
  counter-increment: item;
}
.entry-content ul {
  padding-left: 0;
  list-style: none;
}
.entry-content ul li {
  z-index: 1;
  position: relative;
  padding-left: 2.4rem;
}
.entry-content ul li::before {
  position: absolute;
  top: 1.4rem;
  left: 0.8rem;
  aspect-ratio: 1/1;
  width: 0.3rem;
  height: auto;
  border-radius: 100vh;
  background-color: var(--color-dark6);
  content: "";
}
.entry-content ul.no-bullet {
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-content ul.no-bullet li {
  padding-left: 0;
}
.entry-content ul.no-bullet li::before {
  display: none;
}
.entry-content hr.wp-block-separator {
  height: 0.1rem;
  border: none;
  border-top: 0.1rem solid var(--color-dark7);
  background-color: none;
}
.entry-content .caption {
  color: #4d4d4d;
  font-size: 1.4rem;
}
.entry-content strong {
  font-weight: 700;
}
.entry-content a {
  color: var(--color-primary);
  text-decoration: underline;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content a.c-button {
  min-height: inherit !important;
  text-decoration: none;
}
.entry-content a[target=_blank]:not(.c-button):not(.u-link-blank):not(.u-link-pdf)::after {
  display: inline-flex;
  position: relative;
  bottom: -0.2rem;
  width: 1.8rem;
  height: 2rem;
  margin-left: 1rem;
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22uuid-700a6583-b6c2-44bb-b517-bd83926e240d%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20id%3D%22uuid-cba58cbd-6ce4-4471-9b14-92c1045df5ce%22%3E%3Cpath%20d%3D%22M3.38%2C0v14.62h14.62V0H3.38ZM16.59%2C13.22H4.78V1.41h11.81v11.81Z%22%20fill%3D%22%230090c6%22%2F%3E%3Cpolygon%20points%3D%221.41%2016.59%201.41%2010.41%201.41%204.78%201.41%203.38%200%203.38%200%2018%2014.62%2018%2014.62%2016.59%2013.22%2016.59%201.41%2016.59%22%20fill%3D%22%230090c6%22%2F%3E%3Cpolygon%20points%3D%228.18%2011%2012.33%206.85%2012.33%209.84%2013.73%209.84%2013.73%204.45%208.35%204.45%208.35%205.86%2011.33%205.86%207.19%2010%208.18%2011%22%20fill%3D%22%230090c6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  background-size: 100% auto;
  content: "";
}
.entry-content a {
  /*
   &[href*='.doc'],
   &[href*='.docx'] {
     &::after {
       content: '';
       background: inline('icon_doc.svg') no-repeat center center;
       background-size: 100% auto;
       width: 2rem;
       height: 2.7rem;
       display: inline-flex;
       position: relative;
       bottom: -0.8rem;
       margin-left: 0.4rem;
     }
   }

   &[href*='.xls'],
   &[href*='.xlsx'] {
     &::after {
       content: '';
       width: 2rem;
       height: 2.7rem;
       background: inline('icon_xls.svg') no-repeat center center;
       background-size: 100% auto;
       display: inline-flex;
       position: relative;
       bottom: -0.8rem;
       margin-left: 0.4rem;
     }
   }

   &[href*='.pdf'] {
     &::after {
       content: '';
       width: 1.8rem;
       height: 2.7rem;
       background: inline('icon_pdf.svg') no-repeat center center;
       background-size: 100% auto;
       display: inline-flex;
       position: relative;
       bottom: -0.8rem;
       margin-left: 0.4rem;
     }
   }*/
}
.entry-content {
  /* Alignments */
}
.entry-content .alignleft {
  /*rtl:ignore*/
  margin-right: 2.6rem;
  /*rtl:ignore*/
  float: left;
}
.entry-content .alignright {
  /*rtl:ignore*/
  margin-left: 2.6rem;
  /*rtl:ignore*/
  float: right;
}
.entry-content .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.entry-content figure figcaption {
  margin-top: 0.8rem;
}
.entry-content table {
  width: 100%;
  border: 0.1rem solid var(--color-dark7);
}
.entry-content table th,
.entry-content table td {
  border: 0.1rem solid var(--color-dark7);
}
.entry-content table tbody tr th {
  font-weight: bold;
  text-align: center;
}
.entry-content table tbody tr td {
  text-align: left;
}
.entry-content table {
  /*
  ol,
  ul {
  	li {
  		&:not(:first-child) {
  			margin-top: 0.4rem;
  		}
  	}
  }

  ol {
  	li {
  		display: inherit;
  		border-bottom: none;

  		&::before {
  			counter-increment: item;
  			content: '(' counter(item, lower-alpha) ')';
  			padding-right: 0.4rem;
  			font-weight: 500;
  			color: #000;
  		}
  	}
  }
  ul {
  }

  dl {
  	dt {
  		//	padding-left: 1.6rem;

  		position: relative;
  		/*
  		&::before {
  			content: "";
  			width: 0.8rem;
  			height: 0.9rem;
  			//	background-color: $color-primary;
  			position: absolute;
  			left: 0;
  			top: 0.8rem;
  			clip-path: polygon(100% 50%, 0 0, 0 100%);
  		}*/
  /*		}
  }*/
}
.entry-content .table-scroll table tbody tr th:first-child {
  width: 8rem;
  text-align: center;
}
.entry-content .table-scroll table tbody tr:not(:first-child) td:first-child {
  min-width: 2rem;
}
.entry-content .table-scroll table tbody tr:not(:first-child) td {
  min-width: 10rem;
}
.entry-content .table-scroll table tbody tr:not(:first-child) th {
  width: 18rem;
}
.entry-content .wp-block-media-text {
  gap: 4rem;
}
.entry-content .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
.entry-content .wp-block-media-text p {
  margin: 0;
}
.entry-content .wp-block-media-text p + p {
  margin-top: 1.6rem;
}
.entry-content .wp-block-quote {
  margin: 2.8rem 0 0 0;
  padding: 1.6rem;
  background-color: var(--color-dark5);
  line-height: 1.75;
}
.entry-content .wp-block-separator {
  margin: 2.8rem 0;
}
.entry-content .wp-block-embed-youtube {
  text-align: center;
}
.entry-content .wp-block-embed-youtube .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
.entry-content .wp-block-embed-youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*----------  faq  ----------*/
.c-faq-list {
  padding: 4rem 0;
  border-top: 0.1rem solid var(--color-dark7);
}
.c-faq-list--q, .c-faq-list--a {
  position: relative;
  padding-left: 3.6rem;
}
.c-faq-list--q::before, .c-faq-list--a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  font-style: normal;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  text-align: center;
}
.c-faq-list--q {
  font-weight: bold;
}
.c-faq-list--q::before {
  content: "Q";
  color: var(--color-primary);
}
.c-faq-list--a {
  margin-top: 2rem;
}
.c-faq-list--a a {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-faq-list--a a:hover {
  text-decoration: none;
}
.c-faq-list--a::before {
  content: "A";
  color: var(--color-body);
}

/*----------  form  ----------*/
button,
input[type=submit],
input[type=reset] {
  border: none;
  border-radius: 0.4rem;
  outline: 0 none;
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  border: #ccc 0.1rem solid;
  border-radius: 0.4rem;
  background-color: #fff;
  color: #4d4d4d;
  font-size: 1.4rem;
  line-height: 1.5;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: rgb(94.8, 94.8, 94.8);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder {
  color: #aaa;
}
input[type=text]:-moz-read-only, input[type=email]:-moz-read-only, input[type=url]:-moz-read-only, input[type=password]:-moz-read-only, input[type=search]:-moz-read-only, input[type=number]:-moz-read-only, input[type=tel]:-moz-read-only, input[type=range]:-moz-read-only, input[type=date]:-moz-read-only, input[type=month]:-moz-read-only, input[type=week]:-moz-read-only, input[type=time]:-moz-read-only, input[type=datetime]:-moz-read-only, input[type=datetime-local]:-moz-read-only, input[type=color]:-moz-read-only, textarea:-moz-read-only {
  background-color: #efefef;
}
input[type=text]:disabled, input[type=text]:read-only,
input[type=email]:disabled,
input[type=email]:read-only,
input[type=url]:disabled,
input[type=url]:read-only,
input[type=password]:disabled,
input[type=password]:read-only,
input[type=search]:disabled,
input[type=search]:read-only,
input[type=number]:disabled,
input[type=number]:read-only,
input[type=tel]:disabled,
input[type=tel]:read-only,
input[type=range]:disabled,
input[type=range]:read-only,
input[type=date]:disabled,
input[type=date]:read-only,
input[type=month]:disabled,
input[type=month]:read-only,
input[type=week]:disabled,
input[type=week]:read-only,
input[type=time]:disabled,
input[type=time]:read-only,
input[type=datetime]:disabled,
input[type=datetime]:read-only,
input[type=datetime-local]:disabled,
input[type=datetime-local]:read-only,
input[type=color]:disabled,
input[type=color]:read-only,
textarea:disabled,
textarea:read-only {
  background-color: #efefef;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  transition: border-color 0.2s ease-in, background-color 0.2s ease-in, box-shadow 0.2s ease-in;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  border-color: #0090c6;
  outline: 0 none;
  background-color: white;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  margin: 0;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  position: relative;
  aspect-ratio: 1/1;
  width: 2rem;
  height: auto;
  border: 0.1rem solid #ccc;
  outline: 0;
  background: #fff;
  background-color: white;
  vertical-align: middle;
  cursor: pointer;
}
input[type=checkbox]::before,
input[type=radio]::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}
input[type=checkbox] + label,
input[type=radio] + label {
  padding-left: 0.4rem;
  vertical-align: middle;
  cursor: pointer;
}

input[type=checkbox] {
  border-radius: 0.4rem;
}
input[type=checkbox]::before {
  aspect-ratio: 1/1;
  width: calc(100% - 0.2rem);
  height: auto;
  background-color: #fff;
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2025.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%22512px%22%20height%3D%22512px%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22enable-background%3Anew%200%200%20512%20512%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20d%3D%22M0%2C272.3L175.3%2C448L512%2C111.7L463.7%2C64L175.3%2C352L47.7%2C224.3L0%2C272.3z%22%2F%3E%0D%0A%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2025.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%22512px%22%20height%3D%22512px%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22enable-background%3Anew%200%200%20512%20512%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20d%3D%22M0%2C272.3L175.3%2C448L512%2C111.7L463.7%2C64L175.3%2C352L47.7%2C224.3L0%2C272.3z%22%2F%3E%0D%0A%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
input[type=checkbox]:checked::before {
  background-color: #000;
}
input[type=checkbox].c-input-check-1 {
  top: 0.7rem;
  width: 1.4rem;
  border: 0.1rem solid var(--color-dark);
  border-radius: 0.2rem;
}
input[type=checkbox].c-input-check-1::before {
  z-index: 1;
  bottom: 0.2rem;
  left: 0.2rem;
  aspect-ratio: 13/12;
  width: 1.4rem;
  height: auto;
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2013.9%2012.6%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23fff%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%230080cb%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cpath%20class%3D%22st1%22%20d%3D%22M3.6%2C12.4h-.2l-2.4-2.5v-.2c-.1%2C0-.8-3.5-.8-3.5%2C0%2C0%2C0-.2%2C0-.3l.5-.2h.3l2.7%2C2.6L12.7.3h.2c0%2C0%2C0%2C0%2C0%2C0l.5.2s.2.1.2.2v1.5h0L4.2%2C12.3h-.6%2C0Z%22%2F%3E%0A%20%20%3Cpath%20class%3D%22st0%22%20d%3D%22M12.8.5l.4.2v1.4L4%2C12.1h-.4l-2.4-2.5h0c0-.1-.7-3.5-.7-3.5l.5-.2%2C2.8%2C2.8L12.8.5M12.8%2C0c-.1%2C0-.2%2C0-.3.1L3.8%2C7.9l-2.5-2.4s-.2%2C0-.3%2C0h-.2l-.5.2C0%2C5.7%2C0%2C5.9%2C0%2C6.1l.7%2C3.4h0v.4l2.4%2C2.5s.2.2.4.2h.4c0%2C0%2C.3%2C0%2C.4-.2L13.7%2C2.4s0%2C0%2C.1-.2v-.2s.1-.1%2C0-.2V.7c0-.2-.2-.4-.4-.4l-.4-.2h-.2Z%22%2F%3E%0A%3C%2Fsvg%3E') no-repeat center center;
  background-size: 100% auto;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
input[type=checkbox].c-input-check-1:checked::before {
  opacity: 1;
}
input[type=checkbox].c-input-check-1 + .c-input-check-1--label {
  padding-left: 0.9rem;
  vertical-align: middle;
  cursor: pointer;
}

input[type=radio] {
  border-radius: 100vh;
}
input[type=radio]::before {
  aspect-ratio: 1/1;
  width: calc(100% - 0.8rem);
  height: auto;
  border-radius: 100vh;
  background-color: #fff;
}
input[type=radio]:checked::before {
  background-color: #000;
}
input[type=radio]:disabled + label {
  cursor: not-allowed;
  opacity: 0.5;
}
input[type=radio] + label {
  transition: opacity 0.3s ease-in-out;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.8rem 3.2rem 0.8rem 0.8rem;
  border: #ccc 0.1rem solid;
  border-radius: 0.4rem;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20class%3D%22w-6%20h-6%20text-gray-800%20dark%3Atext-white%22%20aria-hidden%3D%22true%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%0D%0A%20%20%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m19%209-7%207-7-7%22%2F%3E%0D%0A%3C%2Fsvg%3E');
  background-position: right 9px center;
  background-size: 1rem auto;
  background-repeat: no-repeat;
  background-color: #fff;
  color: inherit;
  cursor: pointer;
}

input[type=file]::-webkit-file-upload-button {
  margin-right: 1rem;
  padding: 0.8rem 1rem;
  border: #ccc 0.1rem solid;
  border-radius: 0.4rem;
  background: #fff;
  cursor: pointer;
}

input[type=file]::file-selector-button {
  margin-right: 1rem;
  padding: 0.8rem 1rem;
  border: #ccc 0.1rem solid;
  border-radius: 0.4rem;
  background: #fff;
  cursor: pointer;
}

.c-form-control {
  width: 100%;
}
.c-form-check--lists {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 4.2rem;
}
.c-form-check--lists.--column {
  flex-direction: column;
}
.c-form-check--list {
  display: flex;
  align-items: flex-start;
}
.c-form-check--list.--mw19 {
  min-width: 19rem;
}
.c-form-check--list.--mw17 {
  min-width: 17rem;
}
.c-form-check--list.--mw20 {
  min-width: 20rem;
}
.c-form-check--label {
  line-height: 1.4;
}
.c-form-button-group {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
}
.c-form-sp-search {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: calc(100% - 6.4rem) 6.4rem;
  width: 100%;
  min-height: 3.8rem;
  gap: 0;
}
html[lang=en-GB] .c-form-sp-search {
  grid-template-columns: calc(100% - 7.2rem) 7.2rem;
}

.c-form-sp-search--input[type=text] {
  height: 100%;
  border-radius: 0.2rem 0 0 0.2rem;
}
.c-form-sp-search--button {
  height: 100%;
  min-height: 3.8rem;
  padding: 0.8rem;
}
.c-form-defs dl {
  margin: 0;
}
.c-form-defs dl:not(:first-child) {
  margin: 5.8rem 0 0 0;
}
.c-form-defs dt {
  display: inline-flex;
  z-index: 1;
  position: relative;
  align-items: flex-start;
  margin: 0;
}
.c-form-defs dt:has(.icon-require) {
  padding-right: 6.2rem;
}
html[lang=en-GB] .c-form-defs dt:has(.icon-require) {
  padding-right: 9.2rem;
}

.c-form-defs dt:has(.icon-require) .icon-require {
  position: absolute;
  top: 0.4rem;
  right: 0;
}
.c-form-defs dd {
  margin: 1.8rem 0 0 0;
}
.c-form-defs dd label {
  display: inline-block;
  margin: 0.8rem 0;
}
.c-form-defs--caption:not(:first-child) {
  margin-top: 1.8rem;
}
.c-form-defs--input {
  margin-top: 1.8rem;
}
.c-form-submit {
  display: flex;
  justify-content: center;
  gap: 2rem 3.8rem;
  text-align: center;
}

.c-input-mw49 {
  width: 100%;
  max-width: 49rem;
}
.c-input-mw66 {
  width: 100%;
  max-width: 66rem;
}
.c-input-w100 {
  width: 100%;
}
.c-input-textarea {
  width: 100%;
  height: 18rem;
}

.is-invalid {
  color: var(--color-red);
}

input.is-invalid {
  border: 0.1rem solid var(--color-red);
}

/*----------  history-list  ----------*/
.c-history-list {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 12.4rem 17.4rem 1fr;
  grid-template-areas: "year title body";
  padding: 3.4rem 0;
  gap: 0 3rem;
  border-bottom: 0.1rem solid var(--color-dark7);
}
.c-history-list--year {
  grid-area: year;
}
.c-history-list--title {
  grid-area: title;
}
.c-history-list--body {
  grid-area: body;
}

/*----------  news  ----------*/
.c-news-link {
  display: flex;
  gap: 0 1.8rem;
}
.c-news-link:hover .c-news-title {
  text-decoration: none;
}
.c-news-link:not(:first-child) {
  margin-top: 1rem;
}
.c-news-date {
  font-weight: 500;
}
.c-news-title {
  text-decoration: underline;
}

.c-news-archive {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-news-archive--link {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 12.4rem 10.6rem auto;
  grid-template-areas: "date icon title";
  padding: 1.2rem 0;
  gap: 0.8rem 1.6rem;
}
.c-news-archive--link:not(:first-child) {
  margin-top: 0.4rem;
}
.c-news-archive--date {
  grid-area: date;
  color: var(--color-body);
}
.c-news-archive--icon {
  grid-area: icon;
}
.c-news-archive--icon > .c-icon {
  width: 100%;
}
.c-news-archive--title {
  grid-area: title;
}

/*----------  lists  ----------*/
ol,
ul {
  padding: 0 0 0 2rem;
}

.no-bullet {
  margin: 0;
  padding: 0;
}
.no-bullet li {
  list-style: none;
}

ul.c-list-01 {
  margin: 2.2rem 0 0;
  padding-left: 0;
  list-style: none;
}
ul.c-list-01 li {
  z-index: 1;
  position: relative;
  padding-left: 1.4rem;
}
ul.c-list-01 li::before {
  position: absolute;
  top: 1.4rem;
  left: 0.25rem;
  aspect-ratio: 1/1;
  width: 0.4rem;
  height: auto;
  border-radius: 100vh;
  background-color: var(--color-dark6);
  content: "";
}

/*----------  paragraph  ----------*/
p {
  margin: 0;
}

.c-paragraph-1 p + p {
  margin-top: 2.8rem;
}
.c-paragraph-2 p + p {
  margin-top: 1rem;
}

/*----------  products  ----------*/
.c-products-link {
  z-index: 1;
  position: relative;
}
.c-products-icon {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.c-products-name {
  z-index: 1;
  position: relative;
  margin-top: 0.4rem;
  padding-left: 1.4rem;
}
.c-products-name::before {
  z-index: 1;
  position: absolute;
  top: 1.2rem;
  left: 0;
  aspect-ratio: 5/9;
  width: 0.5rem;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
.c-products-title {
  margin-top: 0.8rem;
  font-size: 1.8rem;
}
.c-products-caption {
  margin-top: 0.8rem;
}
.c-products-more {
  text-align: right;
}
.c-products-more--label {
  z-index: 1;
  position: relative;
  padding-right: 3.2rem;
  font-size: 2rem;
  line-height: 1;
}
.c-products-more--label::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 26.35/8;
  width: 2.635rem;
  height: auto;
  min-height: 0;
  margin: auto 0;
  background-color: var(--color-body);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

.c-product-cat-link:hover .c-product-cat-more--label::before {
  background-color: var(--color-primary);
}
.c-product-cat-figure {
  text-align: center;
}
.c-product-cat-name {
  margin-top: 2.4rem;
  font-size: 1.8rem;
}
.c-product-cat-caption {
  margin-top: 1.8rem;
}
.c-product-cat-more {
  margin-top: 2.2rem;
  text-align: right;
}
.c-product-cat-more--label {
  z-index: 1;
  position: relative;
  padding-right: 3.2rem;
  font-size: 2rem;
  line-height: 1;
}
.c-product-cat-more--label::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 26.35/8;
  width: 2.635rem;
  height: auto;
  min-height: 0;
  margin: auto 0;
  background-color: var(--color-body);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  transition: background-color 0.2s ease-in-out;
}

/*----------  table  ----------*/
table {
  border-collapse: collapse;
}
table td,
table th {
  padding: 1rem;
  border: 1px solid #ccc;
}
.c-table-1 {
  width: 100%;
  table-layout: fixed;
}
.c-table-1 thead {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.c-table-1 thead th {
  border-color: var(--color-dark7);
}
.c-table-1 thead .th-1 {
  width: 28.6rem;
}
.c-table-1 thead .th-3 {
  width: 18.7rem;
}
.c-table-1 thead .th-4 {
  width: 18.2rem;
}
.c-table-1 tbody tr:nth-child(even) {
  background-color: var(--color-dark5);
}
.c-table-1 tbody tr.is-odd {
  background-color: var(--color-white);
}
.c-table-1 tbody tr.is-even {
  background-color: var(--color-dark5);
}
.c-table-1 tbody td {
  padding: 1rem 2rem;
  border-color: var(--color-dark7);
}
.c-table-1 tbody .td-3 {
  text-align: right;
}
.c-table-1 tbody .td-4 {
  text-align: center;
}
.c-table-2 {
  width: 100%;
}
.c-table-2 th {
  width: 45.5rem;
  background-color: rgba(0, 128, 203, 0.1);
  color: var(--color-primary);
}
.c-table-2 th,
.c-table-2 td {
  padding: 2.4rem;
}

/*----------  title  ----------*/
.c-title.heading-1 {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: auto 1fr;
  align-items: baseline;
  padding-bottom: 0.1rem;
  gap: 0;
  border-bottom: 0.1rem solid var(--color-dark);
}
.c-title.heading-1 > .heading-1--en {
  font-weight: 500;
  font-size: 3.8rem;
  font-family: "Noto Sans", sans-serif;
}
.c-title.heading-1 > .heading-1--ja {
  z-index: 0;
  position: relative;
  padding-left: 3.8rem;
  color: var(--color-dark3);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3235294118;
}
.c-title.heading-1 > .heading-1--ja::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0;
  left: 2.1rem;
  width: 0.2rem;
  height: calc(100% - 0.8rem);
  background-color: var(--color-primary);
  content: "";
}
.c-title.heading-2 > .heading-2--en {
  font-size: 3.8rem;
}
.c-title.heading-2 > .heading-2--ja {
  z-index: 0;
  position: relative;
  padding-left: 3rem;
  color: var(--color-dark3);
  font-size: 2rem;
}
.c-title.heading-2 > .heading-2--ja::before {
  position: absolute;
  top: 0.6rem;
  left: 1.3rem;
  width: 0.2rem;
  height: 1.7rem;
  background-color: var(--color-primary);
  content: "";
}
.c-title.heading-3 > .heading-3--label {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
.c-title.heading-3 > .heading-3--label::after {
  flex: 1;
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-dark);
  content: "";
}
.c-title.heading-4 {
  z-index: 1;
  position: relative;
  padding-bottom: 1rem;
  color: var(--color-body);
  font-weight: 500;
  font-size: 3rem;
}
.c-title.heading-4::before, .c-title.heading-4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  content: "";
}
.c-title.heading-4::before {
  z-index: 1;
  width: 24.8rem;
  border-right: 0.1rem solid var(--color-white);
  background-color: var(--color-blue2);
}
.c-title.heading-4::after {
  z-index: 0;
  width: 100%;
  background-color: var(--color-dark);
}
.c-title.heading-5 {
  z-index: 1;
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-body);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.2;
}
.c-title.heading-5::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background-color: var(--color-primary);
  content: "";
}
.c-title.heading-6 {
  z-index: 1;
  position: relative;
  padding-left: 1rem;
  font-size: 2rem;
  line-height: 1.25;
}
.c-title.heading-6::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background-color: var(--color-primary);
  content: "";
}
.c-title.heading-7 {
  z-index: 1;
  position: relative;
  padding-left: 1rem;
  font-size: 2rem;
  line-height: 1.2;
}
.c-title.heading-7::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.4rem;
  height: calc(100% - 0.4rem);
  background-color: var(--color-primary);
  content: "";
}
.c-title-lead {
  margin-top: 1.6rem;
}

/*----------  icon  ----------*/
.c-icon {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
}
.c-icon.icon-1 {
  padding: 0.3rem 1.55rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.4rem;
}
.c-icon.icon-require {
  padding: 0.3rem 0.8rem;
  background-color: var(--color-red);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
}
.c-icon.icon-news {
  justify-content: center;
  border-radius: 0.4rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.c-icon.icon-news.icon-news-1 {
  background-color: var(--color-red);
  color: var(--color-white);
}
.c-icon.icon-news.icon-news-2 {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*----------  item  ----------*/
.c-items-figure {
  text-align: center;
}
.c-items-name {
  z-index: 1;
  position: relative;
  margin-top: 0.6rem;
  padding-left: 1.2rem;
  font-size: 1.8rem;
}
.c-items-name::before {
  z-index: 1;
  position: absolute;
  top: 1.2rem;
  left: 0;
  aspect-ratio: 5/9;
  width: 0.5rem;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
.c-items-title {
  margin-top: 0.8rem;
}
.c-items-caption {
  margin-top: 0.8rem;
}
.c-items-more {
  text-align: right;
}
.c-items-more--label {
  z-index: 1;
  position: relative;
  padding-right: 3.2rem;
  font-size: 2rem;
  line-height: 1;
}
.c-items-more--label::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 26.35/8;
  width: 2.635rem;
  height: auto;
  min-height: 0;
  margin: auto 0;
  background-color: var(--color-body);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.35%208%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolygon%20points%3D%2226.35%208%200%208%200%207%2023.93%207%2017.64%20.71%2018.34%200%2026.35%208%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

/*----------  pager  ----------*/
.c-pager-list {
  display: flex;
  justify-content: flex-end;
  gap: 0 1rem;
}
.c-pager-list.--center {
  justify-content: center;
}
.c-pager-item {
  display: inline-flex;
  color: var(--color-dark6);
}
.c-pager-item.is-active .c-pager-link, .c-pager-item:hover .c-pager-link {
  border: 0.1rem solid var(--color-blue);
  background-color: var(--color-blue);
  color: var(--color-white);
}
.c-pager-item.is-active .c-pager-link svg, .c-pager-item:hover .c-pager-link svg {
  fill: var(--color-primary);
}
.c-pager-item.is-active .c-pager-link.next, .c-pager-item.is-active .c-pager-link.prev, .c-pager-item:hover .c-pager-link.next, .c-pager-item:hover .c-pager-link.prev {
  border-color: var(--color-white);
}
.c-pager-link {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 2.8rem;
  height: auto;
  border: 0.1rem solid var(--color-dark6);
  color: var(--color-dark6);
  text-decoration: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
}
.c-pager-link.next, .c-pager-link.prev {
  aspect-ratio: 14/28;
  width: 1.4rem;
  border-color: var(--color-white);
}
.c-pager-link.next:hover, .c-pager-link.prev:hover {
  background-color: var(--color-white);
}
.c-pager-link.next:hover svg, .c-pager-link.prev:hover svg {
  opacity: 0.7;
}
.c-pager-link svg {
  aspect-ratio: 12.121/21.414;
  width: 1rem;
  height: auto;
  fill: var(--color-dark6);
  transition: opacity 0.3s ease-in-out;
}

/*----------  report  ----------*/
.c-report-list {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 12.4rem 1fr;
  grid-template-areas: "year title";
  padding: 3.4rem 0;
  gap: 0.8rem 2.2rem;
  border-bottom: 0.1rem solid var(--color-dark7);
}
.c-report-list:first-child {
  border-top: 0.1rem solid var(--color-dark7);
}
.c-report-year {
  grid-area: year;
}
.c-report-title {
  grid-area: title;
}
/*----------  search  ----------*/
.c-search-aside {
  padding: 3.6rem 3.6rem;
}
.c-search-aside-block {
  z-index: 1;
  position: relative;
  padding-bottom: 3.2rem;
}
.c-search-aside-block::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-dark);
  content: "";
}
.c-search-aside-block:not(:first-child) {
  margin-top: 2.6rem;
}
.c-search-aside-input {
  margin-top: 2rem;
}
.c-search-aside-submit {
  margin-top: 3.2rem;
}

/*----------  sentence  ----------*/
.c-sentence-1 {
  color: var(--color-dark6);
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}
.c-sentence-2 {
  line-height: 1.4642857143;
}

/*----------  history-list  ----------*/
.c-sdgs-list {
  padding: 3.6rem 0;
  border-top: 0.1rem solid var(--color-dark7);
  border-bottom: 0.1rem solid var(--color-dark7);
}
.c-sdgs-content {
  margin-top: 3.4rem;
}
.c-sdgs-icons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  gap: 1rem;
}

/*----------  use-case  ----------*/
.c-usecase-link {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: 100%;
  grid-template-areas: "figure" "title" "caption";
  gap: 0;
}
.c-usecase-figure {
  grid-area: figure;
}
.c-usecase-title {
  z-index: 1;
  position: relative;
  grid-area: title;
  margin-top: 2.4rem;
  padding-left: 1.4rem;
  font-size: 2.4rem;
  line-height: 1.45;
}
.c-usecase-title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.4rem;
  height: calc(100% - 1rem);
  margin: auto 0;
  background-color: var(--color-primary);
  content: "";
}
.c-usecase-title--label {
  z-index: 1;
  position: relative;
  padding-right: 3.4rem;
}
.c-usecase-title--label::before {
  position: absolute;
  top: 1rem;
  right: 0;
  aspect-ratio: 25/11;
  width: 2.6rem;
  min-width: 0;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2012.21%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolyline%20points%3D%220%2011.21%2024.59%2011.21%2014.09%20.71%22%20fill%3D%22none%22%20stroke%3D%22%230080cb%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2012.21%22%3E%3Cg%20id%3D%22c%22%3E%3Cpolyline%20points%3D%220%2011.21%2024.59%2011.21%2014.09%20.71%22%20fill%3D%22none%22%20stroke%3D%22%230080cb%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.c-usecase-caption {
  grid-area: caption;
  margin-top: 1.8rem;
}

/*---------- accordion ----------*/
.c-accordion-list[open=true] .c-accordion-label::after {
  transform: rotate(0);
}
.c-accordion-title {
  display: block;
  outline: none;
  cursor: pointer;
}
.c-accordion-label {
  z-index: 1;
  position: relative;
  padding-right: 3rem;
}
.c-accordion-label::before, .c-accordion-label::after {
  position: absolute;
  top: 0.6rem;
  right: 0;
  width: 1.8rem;
  min-width: 0;
  height: auto;
  content: "";
}
.c-accordion-label::before {
  aspect-ratio: 1/1;
  border-radius: 0.2rem;
  background-color: var(--color-white);
}
.c-accordion-label::after {
  aspect-ratio: 1/1;
  height: auto;
  transform: rotate(180deg);
  background-color: var(--color-blue);
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015%2010%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%2210%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(21%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2211%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(23%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(25%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(25%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2213%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(27%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2213%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(27%2017)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(29%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%229%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(29%2019)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(7%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(5%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(5%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(3%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(3%2017)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(1%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%229%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(1%2019)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%229%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(19%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(17%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%227%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(15%205)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(13%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%225%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(11%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(9%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(21%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2211%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(23%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(7%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%229%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(19%205)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(17%203)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(15%201)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(13%203)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%225%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(11%205)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(9%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015%2010%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%2210%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(21%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2211%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(23%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(25%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2212%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(25%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2213%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(27%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2213%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(27%2017)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(29%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2214%22%20y%3D%229%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(29%2019)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(7%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(5%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(5%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(3%2013)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(3%2017)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(1%2015)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20y%3D%229%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(1%2019)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%229%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(19%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(17%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%227%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(15%205)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(13%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%225%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(11%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(9%2011)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2210%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(21%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%2211%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(23%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(7%209)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%229%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(19%205)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%228%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(17%203)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%227%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(15%201)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(13%203)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%225%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(11%205)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%224%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20transform%3D%22translate(9%207)%20rotate(180)%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 1.5rem auto;
  mask-size: 1.5rem auto;
  transition: transform 0.3s ease-in-out;
}
.c-accordion-content {
  height: 0;
  overflow: hidden;
}
.c-accordion-content.is-open {
  height: auto;
}

/*----------  dialog  ----------*/
.c-dialog {
  padding: 0;
  opacity: 0;
  /* Add display */
  transition: opacity 0.4s ease-in;
  /* Add transition-behavior */
}
.c-dialog::backdrop {
  background-color: #000;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.c-dialog.is-open[open] {
  opacity: 1;
}
.c-dialog.is-open[open]::backdrop {
  opacity: 0.75;
}
.c-dialog-inner {
  padding: 2.4rem;
}
.c-dialog:not([open]) {
  opacity: 0;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  top: -1rem;
  right: 0;
  bottom: 0;
  left: 0;
  aspect-ratio: 120/90;
  width: 120px;
  min-width: 0;
  height: auto;
  margin: auto;
  padding: 20px 10px 10px 10px;
  border-radius: 0.4rem;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  margin-top: 5px;
  color: #fff;
  font-size: 10px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

.scroll-hint-icon:after {
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34px;
  height: 14px;
  margin-left: -20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  content: "";
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-shadow-wrap::before {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  content: "";
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  visibility: visible;
  opacity: 1;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  visibility: visible;
  opacity: 1;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-radius: 50%;
  border-left-color: transparent;
  animation: splide-loading 1s linear infinite;
}

.splide__sr {
  clip: rect(0 0 0 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  margin: 0 !important;
  opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  display: flex;
  z-index: 1;
  position: absolute;
  top: 50%;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  opacity: 0.7;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #000;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
}

.splide__pagination__page {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.7;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  z-index: 1;
  transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  height: 3px;
  background: #ccc;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  right: auto;
  left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  display: flex;
  top: 0;
  right: 0.5em;
  bottom: 0;
  left: auto;
  flex-direction: column;
  padding: 1em 0;
}

.c-splide-arrows {
  width: 100%;
}
.c-splide-arrows.--detail .c-splide-arrow--next {
  right: -3.5rem;
}
.c-splide-arrows.--detail .c-splide-arrow--prev {
  left: -3.5rem;
}
.c-splide-arrows.--detail .c-splide-arrow svg {
  width: 0.9rem;
  height: auto;
  fill: var(--color-dark6);
}
.c-splide-arrow {
  z-index: 0;
  position: absolute;
  aspect-ratio: 70/210;
  width: 3.5rem;
  min-width: 0;
  height: auto;
  border-radius: 0;
  background-color: var(--color-white);
  opacity: 1;
}
.c-splide-arrow--prev {
  left: 0;
}
.c-splide-arrow--next {
  right: 0;
}
.c-splide-pagination {
  position: static;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 0 1rem;
}
.c-splide-pagination--page {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 1.2rem;
  height: auto;
  margin: 0;
  background-color: transparent;
  opacity: 1;
}
.c-splide-pagination--page::before, .c-splide-pagination--page::after {
  aspect-ratio: 1/1;
  content: "";
}
.c-splide-pagination--page::before {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  width: 0.6rem;
  min-width: 0;
  height: auto;
  margin: auto;
  border-radius: 100vh;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.c-splide-pagination--page::after {
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border: 0.1rem solid var(--color-dark3);
  border-radius: 50%;
}
.c-splide-pagination--page.is-active {
  transform: scale(1);
}
.c-splide-pagination--page.is-active::before {
  opacity: 1;
}
.c-splide-thumb--track > .c-splide-thumb--list > .c-splide-thumb--slide {
  border: none;
}
.c-splide-thumb--track > .c-splide-thumb--list > .c-splide-thumb--slide > img {
  border: 0.1rem solid var(--color-white);
  transition: border-color 0.3s ease-in-out;
}
.c-splide-thumb--track > .c-splide-thumb--list > .c-splide-thumb--slide.is-active {
  border: none;
}
.c-splide-thumb--track > .c-splide-thumb--list > .c-splide-thumb--slide.is-active > img {
  border: 0.1rem solid var(--color-dark5);
}

/*----------  js tab  ----------*/
.c-tab-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.c-tab-link {
  padding: 0.8rem 1rem;
  border-radius: 0.4rem;
}
.c-tab-link.is-active {
  background-color: #ddd;
}
.c-tab-wrap {
  position: relative;
  overflow-y: hidden;
}
.c-tab-content {
  display: none;
  height: 0;
  overflow: hidden;
}
.c-tab-content.is-active {
  display: block;
  height: auto;
}

/*----------  modal  ----------*/
.c-modal {
  display: none;
  z-index: 101;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  width: 100vw;
  max-height: calc(100vh - 17.6rem);
  margin: auto;
  padding: 0 4rem;
  opacity: 0;
}
.c-modal-overlay {
  display: flex;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.c-modal.is-open {
  display: flex !important;
  opacity: 1;
}
.c-modal-close {
  position: relative;
}
.c-modal-close svg {
  width: 100%;
  height: auto;
}
.c-modal-close .button {
  display: flex;
  z-index: 102;
  position: absolute;
  top: -2.2rem;
  right: -2.2rem;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  padding: 1.2rem;
  border-radius: 100vh;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 1;
}
.c-modal-wrap {
  width: 100%;
}
.c-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 80vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}
.c-modal-content .button-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.6rem;
}

/*---------- drop menu ----------*/
.c-drop-menu .has-child {
  position: relative;
}
.c-drop-menu .gnav-submenu {
  display: none;
}
.c-drop-menu .gnav-submenu.is-open {
  display: block;
  z-index: 2;
  opacity: 1;
}
.c-drop-menu .gnav-submenu.is-close .gnav-submenu-list a {
  pointer-events: none;
}
.c-drop-menu .gnav-submenu-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  margin: 2.8rem auto 0;
}
.c-drop-menu .gnav-submenu-list > li:not(:first-child) {
  border-top: 0.1rem solid #fff;
}
.c-drop-menu .gnav-submenu-list > li a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  padding: 1.55rem 1.6rem;
  background-color: #000;
  color: #fff;
  line-height: 1.5;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.c-drop-menu .gnav-submenu-list > li .name {
  display: flex;
  position: relative;
  justify-content: flex-start;
  width: 100%;
  padding-right: 3.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-align: left;
}
.c-drop-menu .gnav-submenu-list > li .name::before {
  position: absolute;
  top: 0;
  right: 1.1rem;
  bottom: 0;
  width: 1.9rem;
  height: 1.9rem;
  margin: auto 0;
  background-position: center center;
  content: "";
}

/*----------  header  ----------*/
.p-header {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-rows: auto;
  grid-template-columns: 20rem 1fr;
  grid-template-areas: "logo primary";
  gap: 1rem 2.4rem;
  background-color: var(--color-white);
}
.p-header.is-sticky {
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}
.p-header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background-color: #f2f2f2;
  content: "";
}
.p-header-logo {
  display: flex;
  grid-area: logo;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}
.p-header-logo--link {
  transition: opacity 0.3s ease-in-out;
}
.p-header-logo--link:hover {
  opacity: 0.8;
}
.p-header-lang {
  display: flex;
  grid-area: lang;
  justify-content: flex-end;
  gap: 0 2rem;
  font-size: 1.4rem;
}
.p-header-lang--link {
  display: inline-flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.p-header-lang--link:hover {
  color: var(--color-body);
  text-decoration: underline;
}
.p-header-lang--link::before {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  aspect-ratio: 30/20;
  width: 3rem;
  min-width: 0;
  height: auto;
  margin: auto 0;
  content: "";
}
.p-header-lang--link.--jp::before {
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2030%2020%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23bc002d%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23fff%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Crect%20class%3D%22st1%22%20width%3D%2230%22%20height%3D%2220%22%2F%3E%0A%20%20%3Ccircle%20class%3D%22st0%22%20cx%3D%2215%22%20cy%3D%2210%22%20r%3D%226%22%2F%3E%0A%3C%2Fsvg%3E') no-repeat center center;
}
.p-header-lang--link.--en::before {
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20width%3D%2230%22%20height%3D%2220%22%20fill%3D%22%23002267%22%2F%3E%3Cpolygon%20points%3D%2230%200%2026.33%200%2017.35%205.98%2017.35%200%2012.65%200%2012.65%205.83%203.9%200%200%200%200%202.61%207.56%207.65%200%207.65%200%2012.35%207.8%2012.35%200%2017.55%200%2020%204.14%2020%2012.65%2014.33%2012.65%2020%2017.35%2020%2017.35%2014.18%2026.08%2020%2030%2020%2030%2017.4%2022.43%2012.35%2030%2012.35%2030%207.65%2022.67%207.65%2030%202.76%2030%200%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2230%208.67%2016.33%208.67%2016.33%200%2013.67%200%2013.67%208.67%200%208.67%200%2011.33%2013.67%2011.33%2013.67%2020%2016.33%2020%2016.33%2011.33%2030%2011.33%2030%208.67%22%20fill%3D%22%23d60029%22%2F%3E%3Cpolygon%20points%3D%220%200%200%201.63%208.98%207.62%2011.43%207.62%200%200%22%20fill%3D%22%23d60029%22%2F%3E%3Cpolygon%20points%3D%2230%2018.37%2021.02%2012.38%2018.57%2012.38%2030%2020%2030%2018.37%22%20fill%3D%22%23d60029%22%2F%3E%3Cpolygon%20points%3D%2217.35%207.62%2017.35%206.8%2027.55%200%2030%200%2018.57%207.62%2017.35%207.62%22%20fill%3D%22%23d60029%22%2F%3E%3Cpolygon%20points%3D%2211.43%2012.38%200%2020%202.45%2020%2012.65%2013.2%2012.65%2012.38%2011.43%2012.38%22%20fill%3D%22%23d60029%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
.p-header-lang--link.--ch::before {
  background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20width%3D%2230%22%20height%3D%2220%22%20fill%3D%22%23ee1c25%22%2F%3E%3Cpolygon%20points%3D%224.59%202.11%205.29%204.27%207.55%204.27%205.72%205.6%206.42%207.75%204.59%206.42%202.75%207.75%203.45%205.6%201.62%204.27%203.89%204.27%204.59%202.11%22%20fill%3D%22%23ff0%22%2F%3E%3Cpolygon%20points%3D%229.37%201%209.42%201.73%2010.12%201.91%209.44%202.18%209.49%202.9%209.02%202.34%208.35%202.6%208.74%201.99%208.28%201.43%208.98%201.61%209.37%201%22%20fill%3D%22%23ff0%22%2F%3E%3Cpolygon%20points%3D%2211.84%203.18%2011.55%203.85%2012.09%204.33%2011.37%204.26%2011.08%204.92%2010.92%204.21%2010.2%204.14%2010.83%203.77%2010.67%203.06%2011.22%203.55%2011.84%203.18%22%20fill%3D%22%23ff0%22%2F%3E%3Cpolygon%20points%3D%2211.15%205.63%2011.38%206.32%2012.1%206.32%2011.52%206.75%2011.74%207.44%2011.15%207.01%2010.57%207.44%2010.79%206.75%2010.2%206.32%2010.93%206.32%2011.15%205.63%22%20fill%3D%22%23ff0%22%2F%3E%3Cpolygon%20points%3D%229.55%207.81%209.46%208.53%2010.12%208.84%209.4%208.98%209.31%209.7%208.96%209.06%208.25%209.2%208.75%208.67%208.4%208.03%209.05%208.34%209.55%207.81%22%20fill%3D%22%23ff0%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
.p-header-primary {
  grid-area: primary;
}
.p-header-close {
  grid-area: close;
  padding: 1rem;
}
.p-header-close--button {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 3.5rem;
  height: auto;
  padding: 0.8rem;
  border-radius: 0.2rem;
  background-color: var(--color-body);
}
.p-header-close--button svg {
  width: 100%;
  height: auto;
  fill: var(--color-white);
}
.p-header-search-sp {
  display: flex;
  grid-area: search-sp;
  align-items: center;
  justify-content: flex-end;
}
.p-header-search-sp--button {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  padding: 0.6rem;
  border-radius: 0.2rem;
}
.p-header-search-sp svg {
  width: 100%;
  height: auto;
  fill: var(--color-white);
}
.p-header-search-sp--form {
  position: fixed;
  top: var(--hh);
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: var(--color-black2);
}
.p-header-search-sp--form.is-open {
  height: auto;
}
.p-header-search-sp--inner {
  padding: 2rem 2rem 1rem;
}
.p-header-search-sp--close {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.p-header-search-sp--close svg {
  width: 1.5rem;
  height: auto;
}
.p-header-gnav {
  grid-area: gnav;
}
.p-header-drawer {
  display: flex;
  grid-area: drawer;
  align-items: center;
  justify-content: flex-end;
}
.p-header-drawer--button {
  z-index: 1;
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  padding: 0;
  border-radius: 0.2rem;
}
.p-header-drawer--button.is-open .p-header-drawer--line:nth-of-type(1) {
  transform: translateY(1.05rem) rotate(-45deg);
}
.p-header-drawer--button.is-open .p-header-drawer--line:nth-child(2) {
  opacity: 0;
}
.p-header-drawer--button.is-open .p-header-drawer--line:nth-of-type(3) {
  transform: translateY(-1.05rem) rotate(45deg);
}
.p-header-drawer--line {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 1rem);
  height: 0.3rem;
  margin: auto;
  background-color: var(--color-white);
  transition: all 0.2s ease;
}
.p-header-drawer--line:nth-of-type(1) {
  top: -1.8rem;
}
.p-header-drawer--line:nth-of-type(3) {
  top: 1.8rem;
}

/*----------  gnavi  ----------*/
.p-gnav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.2rem;
  gap: 0 0.1rem;
}
.p-gnav-submenu {
  display: none;
  z-index: -1;
  position: absolute;
  top: 100%;
  left: -0.7rem;
  width: auto;
  min-width: 66.8rem;
  height: auto;
  padding: 1.6rem 0 0 0;
  opacity: 0;
}
.p-gnav-submenu.is-open {
  display: block;
  opacity: 1;
}
.p-gnav-submenu--inner {
  padding: 3.2rem 4rem 3.4rem;
  border-radius: 4rem 0;
  background-color: var(--color-white);
  box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.4);
}
.p-gnav-submenu--head {
  z-index: 1;
  position: relative;
  padding-bottom: 1.6rem;
}
.p-gnav-submenu--head::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-dark);
  content: "";
}
.p-gnav-submenu--head-link {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 1.6rem;
  font-size: 1.8rem;
}
.p-gnav-submenu--head-link::before {
  z-index: 1;
  position: absolute;
  top: 1.2rem;
  left: 0;
  aspect-ratio: 5/9;
  width: 0.5rem;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
.p-gnav-submenu--list {
  margin-top: 2rem;
  gap: 1rem 0;
}
.p-gnav-submenu--link {
  z-index: 1;
  position: relative;
  padding: 0 0 0 1.6rem;
}
.p-gnav-submenu--link::before {
  z-index: 1;
  position: absolute;
  top: 0.9rem;
  left: 0;
  aspect-ratio: 5/9;
  width: 0.5rem;
  height: auto;
  background-color: var(--color-primary);
  content: "";
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
}
.p-gnav-list {
  z-index: 1;
  position: relative;
}
.p-gnav-list {
  /*
  &:not(:has(.--online, .--contact)) {
  	&::before {
  		content: '';
  		width: 0.1rem;
  		height: 100%;
  		position: absolute;
  		left: -0.1rem;
  		top: 0;
  		bottom: 0;
  		margin: auto 0;
  		background-color: var(--color-dark);
  	}
  }*/
}
.p-gnav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  font-size: 1.8rem;
}
.p-gnav-link {
  /*
  &:not(.--online, .--contact) {

  	padding: 0 clamp(20px, 5.848vw + -39.883px, 40px);
  	color: var(--color-body);

  	@include breakpoint.down(medium) {
  		padding: 0.8rem;
  	}

  	.p-gnav-link--label {
  		position: relative;
  		z-index: 1;

  		&::before {
  			content: '';
  			position: absolute;
  			right: -1rem;
  			top: 0;
  			bottom: 0;
  			width: 0.5rem;
  			height: 1rem;
  			margin: auto 0;
  			background-color: var(--color-primary);
  			clip-path: polygon(100% 50%, 0 0, 0 100%);
  		}
  	}
  }*/
}
.p-gnav-link.--search, .p-gnav-link.--online, .p-gnav-link.--contact {
  padding: 0 clamp(2.4rem, 0.382rem + 1.364vw, 3rem);
}
html[lang=en-GB] .p-gnav-link.--search, html[lang=en-GB] .p-gnav-link.--online, html[lang=en-GB] .p-gnav-link.--contact {
  padding: 0 clamp(1.6rem, -3.109rem + 3.182vw, 3rem);
}

.p-gnav-link.--search > .p-gnav-link--label, .p-gnav-link.--online > .p-gnav-link--label, .p-gnav-link.--contact > .p-gnav-link--label {
  z-index: 1;
  position: relative;
}
.p-gnav-link.--search > .p-gnav-link--label::before, .p-gnav-link.--online > .p-gnav-link--label::before, .p-gnav-link.--contact > .p-gnav-link--label::before {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: auto;
  margin: auto 0;
  content: "";
}
.p-gnav-link.--online, .p-gnav-link.--contact {
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: background-color 0.3s ease-in-out;
}
.p-gnav-link.--online:hover, .p-gnav-link.--contact:hover {
  background-color: rgb(var(--color-rgb-blue2), 0.8);
  color: var(--color-white);
}
.p-gnav-link.--search {
  border: solid var(--color-dark);
  border-width: 0.1rem 0.1rem 0 0.1rem;
  border-radius: 0.443rem 0 0 0;
  transition: background-color 0.3s ease-in-out;
}
.p-gnav-link.--search:hover {
  background-color: var(--color-dark5);
  color: var(--color-body);
}
.p-gnav-link.--search > .p-gnav-link--label {
  padding-left: 2.4rem;
}
.p-gnav-link.--search > .p-gnav-link--label::before {
  aspect-ratio: 1/1;
  width: 1.8rem;
  background-color: var(--color-body);
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2044.26%2044.29%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M26.98%2C4.62C20.82-1.54%2C10.79-1.54%2C4.62%2C4.62c-6.16%2C6.16-6.16%2C16.19%2C0%2C22.36%2C6.16%2C6.16%2C16.19%2C6.16%2C22.36%2C0%2C6.16-6.16%2C6.16-16.19%2C0-22.36ZM24.79%2C24.79c-4.96%2C4.96-13.01%2C4.96-17.97%2C0C1.86%2C19.82%2C1.86%2C11.78%2C6.82%2C6.82c4.96-4.96%2C13-4.96%2C17.97%2C0%2C4.96%2C4.96%2C4.96%2C13%2C0%2C17.97Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M8.8%2C9.73c-2.54%2C3.26-2.75%2C7.75-.63%2C11.22.16.27.51.35.78.19.27-.16.35-.51.19-.78-1.87-3.07-1.69-7.05.56-9.94.19-.25.15-.6-.1-.79-.25-.19-.6-.15-.79.1Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M43.11%2C38.73l-11.47-11.18c-.63-.61-1.63-.6-2.25.02l-1.82%2C1.82c-.62.62-.63%2C1.62-.01%2C2.25l11.18%2C11.47c1.24%2C1.5%2C3.07%2C1.59%2C4.49.17%2C1.42-1.42%2C1.39-3.31-.11-4.55Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2044.26%2044.29%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M26.98%2C4.62C20.82-1.54%2C10.79-1.54%2C4.62%2C4.62c-6.16%2C6.16-6.16%2C16.19%2C0%2C22.36%2C6.16%2C6.16%2C16.19%2C6.16%2C22.36%2C0%2C6.16-6.16%2C6.16-16.19%2C0-22.36ZM24.79%2C24.79c-4.96%2C4.96-13.01%2C4.96-17.97%2C0C1.86%2C19.82%2C1.86%2C11.78%2C6.82%2C6.82c4.96-4.96%2C13-4.96%2C17.97%2C0%2C4.96%2C4.96%2C4.96%2C13%2C0%2C17.97Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M8.8%2C9.73c-2.54%2C3.26-2.75%2C7.75-.63%2C11.22.16.27.51.35.78.19.27-.16.35-.51.19-.78-1.87-3.07-1.69-7.05.56-9.94.19-.25.15-.6-.1-.79-.25-.19-.6-.15-.79.1Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M43.11%2C38.73l-11.47-11.18c-.63-.61-1.63-.6-2.25.02l-1.82%2C1.82c-.62.62-.63%2C1.62-.01%2C2.25l11.18%2C11.47c1.24%2C1.5%2C3.07%2C1.59%2C4.49.17%2C1.42-1.42%2C1.39-3.31-.11-4.55Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.p-gnav-link.--online > .p-gnav-link--label {
  padding-left: 3.6rem;
}
.p-gnav-link.--online > .p-gnav-link--label::before {
  aspect-ratio: 25/20;
  width: 2.5rem;
  background-color: var(--color-white);
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.31%2020%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M1.65%2C20h11.97v-6.9h5.75v6.9h4.28v-11.65H1.65v11.65ZM5.97%2C13.1h3.45v3.45h-3.45v-3.45Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M15.36%2C15.56c-.29%2C0-.53.24-.53.53v1.75c0%2C.29.24.53.53.53s.53-.24.53-.53v-1.75c0-.29-.24-.53-.53-.53Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2211.37%200%207.84%200%207.12%207.06%2011.18%207.06%2011.37%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2218.19%207.06%2017.47%200%2013.93%200%2014.13%207.06%2018.19%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2225.31%207.06%2023.66%200%2020.03%200%2021.14%207.06%2025.31%207.06%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%225.28%200%201.65%200%200%207.06%204.17%207.06%205.28%200%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.p-gnav-link.--contact {
  border-radius: 0 0.443rem 0 0;
}
.p-gnav-link.--contact > .p-gnav-link--label {
  padding-left: 3.6rem;
}
.p-gnav-link.--contact > .p-gnav-link--label::before {
  aspect-ratio: 27/28;
  width: 2.6rem;
  background-color: var(--color-white);
  -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026.55%2020.04%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M25.26%2C1.29C24.47.5%2C23.36%2C0%2C22.14%2C0H4.41c-1.21%2C0-2.32.5-3.12%2C1.29C.5%2C2.09%2C0%2C3.2%2C0%2C4.41v11.22c0%2C1.21.5%2C2.32%2C1.29%2C3.12.79.8%2C1.9%2C1.29%2C3.12%2C1.29h17.73c1.21%2C0%2C2.32-.5%2C3.12-1.29.8-.79%2C1.29-1.9%2C1.29-3.12V4.41c0-1.21-.5-2.32-1.29-3.12ZM24.55%2C15.63c0%2C.67-.27%2C1.26-.7%2C1.7-.44.44-1.03.7-1.7.7H4.41c-.67%2C0-1.26-.27-1.7-.7-.44-.44-.7-1.03-.7-1.7V4.41c0-.67.27-1.26.7-1.7.44-.44%2C1.03-.7%2C1.7-.7h17.73c.67%2C0%2C1.26.27%2C1.7.7.44.44.7%2C1.03.7%2C1.7v11.22h0Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpath%20d%3D%22M22.02%2C3.14l-7.86%2C7.91c-.24.24-.55.37-.88.37-.33%2C0-.65-.13-.88-.36h0S4.54%2C3.14%2C4.54%2C3.14l-.85.85%2C7.86%2C7.91h0c.46.46%2C1.08.72%2C1.73.72.65%2C0%2C1.27-.26%2C1.73-.72h0s7.86-7.91%2C7.86-7.91l-.85-.85Z%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Cpolygon%20points%3D%2217.45%2012.7%2022.58%2017.07%2023.36%2016.16%2018.23%2011.79%2017.45%2012.7%22%20fill%3D%22%23f2f2f2%22%2F%3E%3Crect%20x%3D%222.78%22%20y%3D%2213.83%22%20width%3D%226.74%22%20height%3D%221.2%22%20transform%3D%22translate(-7.89%207.44)%20rotate(-40.46)%22%20fill%3D%22%23f2f2f2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.p-gnav-link::before {
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background-color: transparent;
  content: "";
  transition: background-color 0.3s ease-in-out;
}
.p-gnav-link:hover {
  z-index: -1;
  position: relative;
  color: var(--color-body);
}
.p-gnav-link.is-active::before, .p-gnav-link.is-hover::before {
  background-color: var(--color-primary);
}
.p-gnav-link:not(.is-active):not(.--search):not(.--online):not(.--contact):hover::before {
  background-color: var(--color-primary);
}
.p-gnav-link:not(.--search):not(.--online):not(.--contact) {
  padding: 0 clamp(3rem, -13.818rem + 11.364vw, 8rem);
}
html[lang=en-GB] .p-gnav-link:not(.--search):not(.--online):not(.--contact) {
  padding: 0 2rem;
}
.p-gnav-link:not(.--search):not(.--online):not(.--contact)::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.1rem;
  width: 0.1rem;
  height: 1.8rem;
  margin: auto 0;
  background-color: var(--color-dark5);
  content: "";
}

/*----------  footer  ----------*/
.p-footer {
  z-index: 1;
  position: relative;
  padding: 6rem 5rem 6.4rem;
}
.p-footer::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: var(--color-primary);
  content: "";
}
.p-footer-grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: clamp(26.2rem, 22.2rem + 3.125vw, 28.2rem) 1fr auto 24rem;
  grid-template-areas: "info menu menu buttons" "guide guide copyright copyright";
  gap: 11.2rem 1rem;
  /*
  		@include breakpoint.down(xlarge) {
  			grid-template-columns: 32rem 1fr;
  			grid-template-rows: auto auto auto;
  			grid-template-areas:
  				'info menu '
  				'info buttons'
  				'guide copyright ';
  		}
  */
}
.p-footer-info {
  grid-area: info;
}
.p-footer-info--name {
  font-size: 2.4rem;
}
.p-footer-info--contact {
  margin-top: 1.2rem;
}
.p-footer-menu {
  z-index: 1;
  position: relative;
  grid-area: menu;
  padding-top: 0.3rem;
  padding-left: clamp(2.4rem, -2.8rem + 4.063vw, 5rem);
}
.p-footer-menu::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: 100%;
  background-color: var(--color-dark6);
  content: "";
}
.p-footer-menu-rows {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 11.2rem clamp(7.2rem, -0.8rem + 6.25vw, 11.2rem) 11.6rem clamp(7.2rem, -0.8rem + 6.25vw, 11.2rem) 1fr;
  grid-template-areas: ". . . . .";
  gap: 0 clamp(2.4rem, -14.24rem + 13vw, 5rem);
}
.p-footer-menu-row {
  width: 100%;
  max-width: 11.2rem;
}
.p-footer-menu-title {
  font-size: 1.8rem;
}
.p-footer-menu-title--link {
  color: var(--color-white);
}
.p-footer-menu-title + .p-footer-menu-lists {
  margin-top: 1rem;
}
.p-footer-menu-lists {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
.p-footer-menu-link {
  color: var(--color-dark);
}
.p-footer-menu-link:hover {
  color: var(--color-dark);
  text-decoration: underline;
}
.p-footer-menu-caption {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
.p-footer-buttons {
  display: flex;
  grid-area: buttons;
  flex-direction: column;
  padding-top: 1rem;
  gap: 2rem 0;
}
.p-footer-guide {
  display: flex;
  grid-area: guide;
  flex-wrap: wrap;
  gap: 0 2.8rem;
}
.p-footer-guide-link {
  color: var(--color-dark);
  font-size: 1.2rem;
}
.p-footer-guide-link:hover {
  color: var(--color-dark);
  text-decoration: underline;
}
.p-footer-guide-link:not(:first-child) {
  z-index: 1;
  position: relative;
}
.p-footer-guide-link:not(:first-child)::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  width: 0.1rem;
  height: calc(100% - 0.8rem);
  margin: auto 0;
  background-color: var(--color-dark);
  content: "";
}
.p-footer-copyright {
  grid-area: copyright;
  font-size: 1.4rem;
}

/*----------  page head  ----------*/
.p-pagehead {
  background-color: var(--color-dark4);
}
.p-pagehead-inner {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  min-height: 20rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.p-pagehead-figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.p-pagehead-figure img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* この一行を追加するだけ！ */
}
.p-pagehead-title {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
  gap: 0.4rem 0;
  line-height: 1.15;
}
.p-pagehead-title::before, .p-pagehead-title::after {
  position: absolute;
  left: 0;
  width: 0.4rem;
  content: "";
}
.p-pagehead-title::before {
  top: 0;
  height: 100%;
  background-color: var(--color-primary);
}
.p-pagehead-title::after {
  top: 50%;
  height: 50%;
  background-color: var(--color-secondary);
}
.p-pagehead-title--en {
  font-weight: 500;
  font-size: 4.2rem;
  font-family: "Noto Sans", sans-serif;
}
.p-pagehead-title--ja {
  font-weight: 500;
  font-size: 3.6rem;
}
.p-pagehead-title--ja.--order {
  font-size: 3.2rem;
}
.p-pagehead-title--sub {
  color: var(--color-dark3);
  font-weight: 500;
  font-size: 2.4rem;
}

/*----------  404  ----------*/
.p-error-404-navi {
  margin: 7rem auto 0;
}

/*----------  catalog  ----------*/
.p-catalog-caption {
  margin-top: 3rem;
}
.p-catalog-all {
  margin-top: 6.5rem;
}
.p-catalog-all--nav {
  margin-top: 3.8rem;
}
.p-catalog-all--caption {
  margin-top: 3.4rem;
}
.p-catalog-lists {
  margin-top: 7.6rem;
  gap: 8rem 4.5rem;
}
.p-catalog-files {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3.2rem;
  gap: 2.2rem 0;
}

/*----------  inquiry  ----------*/
.p-company-section:not(:first-child) {
  margin-top: 6.4rem;
}
.p-company-content {
  margin-top: 3.2rem;
}
.p-company-content.--history {
  margin-top: 0;
}
.p-company-content--row {
  padding-bottom: 3.4rem;
  border-bottom: 0.1rem solid var(--color-dark7);
}
.p-company-content--row:not(:first-child) {
  margin-top: 3.4rem;
}
.p-company-content--body {
  margin-top: 1rem;
}
.p-company-content--map iframe {
  width: 100%;
  height: 50rem;
}
.p-company-content--caption {
  margin-top: 1.6rem;
}
.p-company-content--grid {
  gap: 0.8rem;
}
.p-company-movie {
  margin: 3.2rem auto 0;
}
.p-company-movie {
  aspect-ratio: 16/9; /* For a standard 16:9 YouTube video */
  width: 100%; /* Or any desired width */
  max-width: 80rem;
  text-align: center;
}
.p-company-movie iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.p-company-quality {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 25rem 1fr;
  grid-template-areas: "image body";
  margin-top: 3.6rem;
  padding: 3rem 0 2.2rem 0;
  gap: 2.4rem 4rem;
  border-top: 0.1rem solid var(--color-dark7);
  border-bottom: 0.1rem solid var(--color-dark7);
}
.p-company-quality--image {
  grid-area: image;
  padding-top: 0.8rem;
  text-align: center;
}
.p-company-quality--body {
  grid-area: body;
}
.p-company-sdgs {
  margin-top: 3.8rem;
}
.p-company-report {
  margin-top: 7rem;
}
.p-company-report--lists {
  margin-top: 1.8rem;
}
.p-company-link {
  margin-top: 3.2rem;
}
.p-company-nav {
  margin-top: 8rem;
}

/*----------  detail  ----------*/
.p-detail-primary--inner {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 50rem 1fr;
  grid-template-areas: "image head" "image body";
  margin-top: 3rem;
  gap: 2.2rem 4rem;
}
.p-detail-primary--image {
  grid-area: image;
  padding-top: 1rem;
}
.p-detail-primary--image-main .splide__list {
  height: auto;
}
.p-detail-primary--image-thumb {
  z-index: 2;
  position: relative;
  width: calc(100% - 7rem);
  margin: 2rem auto 0;
}
.p-detail-primary--image-thumb .splide__list {
  height: auto;
}
.p-detail-primary--image-slidethumb {
  width: 10rem;
}
.p-detail-primary--image-figure {
  text-align: center;
}
.p-detail-primary--image-figure img {
  width: 100%;
  max-width: 66.6666666667vw;
}
.p-detail-primary--image-pagenation {
  margin-top: 1.5rem;
}
.p-detail-primary--body {
  grid-area: body;
}
.p-detail-primary--title {
  font-size: 2.2rem;
}
.p-detail-primary--title-small {
  font-size: 1.6rem;
}
.p-detail-primary--icons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3rem;
  gap: 0.8rem;
}
.p-detail-primary--pdt {
  margin: 3rem 0 0 0;
}
.p-detail-primary--files {
  max-width: 62rem;
  margin-top: 3.5rem;
  gap: 2rem;
}
.p-detail-search {
  margin-top: 8rem;
}
.p-detail-search--inner {
  margin-top: 4rem;
}
.p-detail-search--form {
  padding: 4rem 6rem 6rem;
}
.p-detail-search--details {
  padding: 2.4rem 0;
  border-bottom: 0.1rem solid var(--color-dark);
}
.p-detail-search--lists {
  padding-top: 1.8rem;
  padding-bottom: 3.2rem;
}
.p-detail-search--buttons {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  gap: 0 2.4rem;
}
.p-detail-pricelist {
  margin-top: 8.2rem;
}
.p-detail-pricelist--inner {
  margin-top: 4rem;
  overflow: visible !important;
}
.p-detail-pricelist--inner table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

/*----------  faq  ----------*/
.p-faq-caption {
  margin-top: 3.2rem;
}
.p-faq-lists {
  margin-top: 3.6rem;
}

/*----------  inquiry  ----------*/
.p-inquiry-section:not(:first-child) {
  margin-top: 6.4rem;
}
.p-inquiry-caption {
  margin-top: 3.2rem;
}
.p-inquiry-form {
  margin-top: 3.6rem;
}
.p-inquiry-confirm {
  margin-top: 5.4rem;
}
.p-inquiry-submit {
  margin: 7rem auto 0;
}

/*----------  news  ----------*/
.p-news-lists {
  margin-top: 2.4rem;
}
.p-news-pager {
  margin: 3.2rem 0 0 0;
}
.p-news-entry {
  margin-top: 3.4rem;
}
.p-news-nav {
  margin: 7rem auto 0;
}

/*----------  order  ----------*/
.p-order-section:not(:first-child) {
  margin-top: 6.6rem;
}
.p-order-body {
  margin-top: 3rem;
}
.p-order-nav {
  display: flex;
  margin-top: 3.6rem;
  gap: 2rem;
}
.p-order-title {
  margin-top: 5.2rem;
}
.p-order-caption {
  margin-top: 1.6rem;
}

/*----------  products  ----------*/
.p-products-lists {
  margin-top: 4rem;
  gap: 5.4rem 7.5rem;
}
.p-products-search {
  margin-top: 7.2rem;
}
.p-products-itemhead--movie {
  aspect-ratio: 16/9; /* For a standard 16:9 YouTube video */
  width: 100%; /* Or any desired width */
  max-width: 80rem;
  margin: 9.6rem auto 0;
  text-align: center;
}
.p-products-itemhead--movie iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.p-products-items {
  margin-top: 7rem;
}
.p-products-itemslist {
  margin-top: 4rem;
  gap: 5.4rem 4.7rem;
}
.p-products-form {
  margin-top: 4rem;
  padding: 3.2rem 6rem 6rem;
}
.p-products-form--title {
  font-size: 1.8rem;
}
.p-products-form--details {
  padding: 2.4rem 0;
  border-bottom: 0.1rem solid var(--color-dark);
}
.p-products-form--row + .p-products-form--details--title {
  margin-top: 3.8rem;
}
.p-products-form--inner {
  padding-top: 1.4rem;
}
.p-products-form--inner.--keyword {
  padding-top: 2.6rem;
}
.p-products-form--buttons {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  gap: 0 2.4rem;
}

/*----------  privacy  ----------*/
.p-privacy-caption {
  margin-top: 3.2rem;
}
.p-privacy-block {
  margin-top: 3.4rem;
}
.p-privacy-content {
  margin-top: 1.6rem;
  padding-bottom: 3.4rem;
  border-bottom: 0.1rem solid var(--color-dark7);
}

/*----------  section  ----------*/
.p-section-1 {
  z-index: 1;
  position: relative;
  padding: 2rem;
}
.p-section-1::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  margin: 0 auto;
  background: #26a69a;
  content: "";
}

/*----------  search  ----------*/
.p-search-grid {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 31rem 1fr;
  grid-template-areas: "aside main";
  align-items: start;
  gap: 0 4.2rem;
}
.p-search-aside {
  grid-area: aside;
  margin-top: 1.6rem;
}
.p-search-main {
  grid-area: main;
}
.p-search-count {
  margin-top: 2.2rem;
}
.p-search-count--num {
  font-size: 3.6rem;
}
.p-search-defs {
  margin-top: 2.4rem;
  padding: 2rem 2.8rem;
  border: 0.1rem solid var(--color-dark5);
}
.p-search-defs > dl {
  margin: 0;
}
.p-search-pager {
  margin: 3.2rem 0 0 0;
}
.p-search-itemslist {
  margin-top: 3rem;
  gap: 3.4rem 2.2rem;
}

/*----------  p-sitemap  ----------*/
.p-sitemap .wsp-pages-list .children {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

/*----------  transaction  ----------*/
.p-transaction-block:not(:first-child) {
  margin-top: 3.4rem;
}
.p-transaction-content {
  margin-top: 1.6rem;
  padding-bottom: 3.4rem;
  border-bottom: 0.1rem solid var(--color-dark7);
}

/*----------  top  ----------*/
.p-top-mv {
  z-index: 1;
  position: relative;
}
.p-top-mv-title {
  display: flex;
  position: absolute;
  bottom: -5.3rem;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  font-size: 5.339rem;
  line-height: 1.5;
}

.p-top-mv-title--bg {
  line-height: 1;
}
html[lang=en-GB] .p-top-mv-title--bg {
  line-height: 1.2;
}

.p-top-mv-title--bg.--first {
  padding: 2.6rem 5.4rem 1.4rem 6rem;
}
.p-top-mv-title--bg.--second {
  padding: 1.4rem 0.6rem 1.8rem 6rem;
}
html[lang=en-GB] .p-top-mv-title--bg.--second {
  padding: 1.4rem 1.2rem 1.8rem 6rem;
}
html[lang=zh-CN] .p-top-mv-title--bg.--second, html[lang=zh-Hans] .p-top-mv-title--bg.--second {
  padding: 1.4rem 1.8rem 1.8rem 6rem;
}
.p-top-mv-title--en {
  font-size: 6.575rem;
}
.p-top-pickup {
  padding-top: 16.8rem;
  padding-bottom: 12rem;
}
.p-top-pickup-grid {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 50rem 1fr;
  grid-template-areas: "image body" "image other";
  margin-top: 2.8rem;
  gap: 2rem 6rem;
}
.p-top-pickup-slide {
  /*
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: 50rem 1fr;
  grid-template-rows: auto;
  gap: 2rem 6rem;
  grid-template-areas: 'image body';

  @include breakpoint.down(medium) {
  	grid-template-columns: 100%;
  	grid-template-rows: auto auto;

  	grid-template-areas: 'image' 'body';
  	margin-top: 2.4rem;
  	gap: get_vw(28, 375) 0;
  }*/
}
.p-top-pickup-images {
  z-index: 1;
  position: relative;
  grid-area: image;
  padding-top: 1.2rem;
}
.p-top-pickup-body {
  grid-area: body;
  text-align: left;
}
.p-top-pickup-body--head {
  font-size: 2.2rem;
}
.p-top-pickup-body--article {
  margin-top: 2rem;
}
.p-top-pickup-body--more {
  margin-top: 3.8rem;
}
.p-top-pickup-other {
  grid-area: other;
  max-width: 64rem;
  gap: 1.6rem;
}
.p-top-pickup-other--slider {
  margin-top: 1rem;
}
.p-top-pickup-other--slide {
  width: 11.4rem;
}
.p-top-pickup-controls {
  z-index: 1;
  position: relative;
  grid-area: controls;
  margin: 0 -2rem;
}
.p-top-pickup-pagenation {
  margin-top: 1.6rem;
}
.p-top-products {
  padding-top: 10.4rem;
}
.p-top-products-inner {
  z-index: 1;
  position: relative;
  padding-bottom: 11.8rem;
}
.p-top-products-inner::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 8rem);
  height: 0.1rem;
  margin: 0 auto;
  background-color: var(--color-dark7);
  content: "";
}
.p-top-products-lists {
  margin-top: 4rem;
  gap: 3.2rem 3.8rem;
}
.p-top-news {
  padding-top: 10.6rem;
  padding-bottom: 12rem;
}
.p-top-news-inner {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 25.8rem 1fr;
  grid-template-areas: "title lists";
  gap: 0 4rem;
}
.p-top-news-title {
  grid-area: title;
}
.p-top-news-lists {
  display: flex;
  z-index: 1;
  position: relative;
  grid-area: lists;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1rem;
}
.p-top-news-lists.--none {
  align-items: center;
}
.p-top-news-lists::before {
  position: absolute;
  bottom: 0;
  left: -4.3rem;
  width: 0.1rem;
  height: calc(100% - 1.4rem);
  margin: auto 0;
  background-color: var(--color-dark3);
  content: "";
}

/*----------  use-case  ----------*/
.p-usecase-caption {
  margin-top: 2.8rem;
}
.p-usecase-lists {
  margin-top: 6.8rem;
  gap: 7.3rem 6rem;
}
.p-usecase-movie {
  aspect-ratio: 16/9; /* For a standard 16:9 YouTube video */
  width: 100%; /* Or any desired width */
  max-width: 89rem;
  margin: 5.8rem auto 0;
  text-align: center;
}
.p-usecase-movie iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.p-usecase-items {
  margin-top: 5rem;
}
.p-usecase-items--list {
  margin-top: 3rem;
  gap: 3.2rem 4.8rem;
}
.p-usecase-items--nav {
  margin-top: 9.4rem;
}
@media screen and (max-width: 1479px){
  .l-header {
    padding: 1.2rem 2.4rem 0.6rem;
  }
  .p-header {
    grid-template-columns: 17rem 1fr;
  }
  .p-header-logo--img {
    max-width: 17rem;
  }
  html[lang=en-GB] .p-gnav-submenu.--company {
    left: -7rem;
  }
  html[lang=en-GB] .p-gnav-link.--search, html[lang=en-GB] .p-gnav-link.--online, html[lang=en-GB] .p-gnav-link.--contact {
    padding: 0 clamp(1.4rem, -4.655rem + 4.091vw, 3.2rem);
    font-size: 1.7rem;
  }
  .p-gnav-link:not(.--search):not(.--online):not(.--contact) {
    padding: 0.8rem 2.4rem;
  }
  html[lang=en-GB] .p-gnav-link:not(.--search):not(.--online):not(.--contact) {
    padding: 0.8rem 1.3rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1359px){
  .p-footer-menu-rows {
    gap: 0 2.8rem;
  }
}
@media screen and (max-width: 1279px){
  .l-header {
    width: 100%;
    padding: 1.8rem 2.4rem 2.4rem;
  }
  .l-overflow .l-overflow-inner::before {
    min-width: 1280px;
    margin: 0 -4rem;
  }
  .u-xlarge-up {
    display: none;
  }
  .u-repeat-lg-1, .u-repeat-lg-2, .u-repeat-lg-3, .u-repeat-lg-4, .u-repeat-lg-5, .u-repeat-lg-6 {
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
  }
  .u-repeat-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-repeat-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-repeat-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-repeat-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-repeat-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .u-repeat-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .p-header {
    grid-template-rows: auto;
    grid-template-columns: 1fr 3.5rem 3.5rem;
    grid-template-areas: "logo search-sp drawer";
  }
  .p-header-logo {
    justify-content: flex-start;
  }
  .p-header-lang {
    justify-content: flex-start;
    padding: 2.5rem 2rem;
    gap: 0 2.9rem;
  }
  .p-header-primary {
    display: none;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: 0;
    overflow-y: auto;
    background-color: var(--color-dark5);
  }
  .p-header-primary.is-open {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr auto;
    grid-template-areas: "lang close" "gnav gnav";
    gap: 0 1rem;
  }
  .p-gnav {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
    border-top: 0.1rem solid var(--color-white);
  }
  .p-gnav-submenu {
    display: block;
    position: static;
    min-width: inherit;
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
  }
  .p-gnav-submenu.is-open {
    height: auto;
  }
  .p-gnav-submenu--inner {
    padding: 0 2.2rem 0.4rem;
    border-radius: inherit;
    background-color: inherit;
    box-shadow: inherit;
  }
  .p-gnav-submenu--head {
    padding-bottom: 0;
  }
  .p-gnav-submenu--head::before {
    top: 0;
    bottom: inherit;
    background-color: var(--color-dark7);
  }
  .p-gnav-submenu--head::after {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: var(--color-dark7);
    content: "";
  }
  .p-gnav-submenu--head-link {
    padding: 1rem 0.8rem 1rem 2.4rem;
    font-size: 1.6rem;
  }
  .p-gnav-submenu--head-link::before {
    top: 2rem;
    left: 0.8rem;
  }
  .p-gnav-submenu--list {
    margin-top: 0.2rem;
    padding-left: 1.45rem;
    gap: 0;
  }
  .p-gnav-submenu--list.--sp-submenu {
    padding: 1rem 0 0.6rem 1.2rem;
  }
  .p-gnav-submenu--link {
    padding: 0.5rem 0.8rem 0.5rem 2.4rem;
  }
  .p-gnav-submenu--link::before {
    top: 1.6rem;
    left: 0.8rem;
  }
  .p-gnav-list:not(:first-child) {
    border-top: 0.1rem solid var(--color-white);
  }
  .p-gnav-list.--navi {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 4.5rem 18vw;
    gap: 2rem 0;
  }
  .p-gnav-link {
    min-height: auto;
  }
  .p-gnav-link {
    justify-content: flex-start;
    width: 100%;
  }
  .p-gnav-link .p-gnav-link--label {
    z-index: 1;
    position: relative;
    padding-right: 2.3rem;
  }
  .p-gnav-link .p-gnav-link--label::before {
    position: absolute;
    top: 1rem;
    right: 0;
    aspect-ratio: 12/23;
    width: 0.6rem;
    min-width: auto;
    height: auto;
    background-color: var(--color-primary);
    content: "";
    -webkit-mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
    mask: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%3Cg%20id%3D%22c%22%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22%20fill%3D%22%230080cb%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    transition: transform 0.3s ease-in-out;
  }
  .p-gnav-link .p-gnav-link--label.--left {
    padding-right: 0;
    padding-left: 2.4rem;
  }
  .p-gnav-link .p-gnav-link--label.--left::before {
    right: inherit;
    left: 0;
  }
  .p-gnav-link.is-open .p-gnav-link--label::before {
    transform: rotate(-90deg);
  }
  .p-gnav-link.is-active::before, .p-gnav-link.is-hover::before {
    background-color: transparent;
  }
  .p-gnav-link:not(.is-active):not(.--search):not(.--online):not(.--contact):hover::before {
    background-color: transparent;
  }
  .p-section-1::before {
    right: 0;
    left: 0;
    width: 100%;
    min-width: 1280px;
    margin: 0 -4rem;
  }
}
@media screen and (max-width: 1023px){
  .u-repeat-md-1, .u-repeat-md-2, .u-repeat-md-3, .u-repeat-md-4, .u-repeat-md-5, .u-repeat-md-6 {
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
  }
  .u-repeat-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-repeat-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-repeat-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-repeat-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-repeat-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .u-repeat-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .c-button.button-dark-2-outline {
    max-width: inherit;
  }
  .c-button.button-dark-5-outline {
    max-width: inherit;
  }
  .c-button.button-dark-6-outline {
    max-width: inherit;
  }
}
@media screen and (max-width: 782px){
  .admin-bar .l-header.is-sticky {
    top: 46px;
  }
}
@media screen and (max-width: 767px){
  body {
    font-size: 1.6rem;
  }
  .l-header {
    min-width: inherit;
    padding: 2rem 2rem 2.3rem;
  }
  .l-main-column {
    width: 100%;
  }
  .l-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "primary" "aside";
    gap: 4rem 0;
  }
  .l-primary {
    min-width: inherit;
  }
  .l-page {
    padding-top: 3rem;
    padding-bottom: 5.2rem;
  }
  .l-content {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .l-overflow {
    min-width: inherit;
  }
  .l-overflow .l-overflow-inner::before {
    min-width: inherit;
    margin: 0 -2rem;
  }
  .gnav {
    flex-direction: column;
  }
  .l-sidebar {
    width: 100%;
  }
  .l-footer {
    min-width: inherit;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .u-bg-check-sp {
    background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20328.6%20112%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20url(%23d)%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st2%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23f2f2f2%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%20%20%3Cpattern%20id%3D%22d%22%20x%3D%220%22%20y%3D%220%22%20width%3D%224%22%20height%3D%224%22%20patternTransform%3D%22translate(-72.4%20-15529)%20scale(1%20-1)%22%20patternUnits%3D%22userSpaceOnUse%22%20viewBox%3D%220%200%204%204%22%3E%0A%20%20%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st1%22%20width%3D%224%22%20height%3D%224%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st1%22%20width%3D%224%22%20height%3D%224%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%223%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%223%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%221%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fpattern%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Crect%20class%3D%22st0%22%20x%3D%220%22%20width%3D%22328.5%22%20height%3D%22112%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') repeat top center var(--color-white);
    background-size: 32.85rem auto;
  }
  .u-text-left-sp {
    text-align: left;
  }
  .u-text-underline-blue {
    text-underline-offset: 0.4rem;
  }
  .u-text-ellipsis-3--sp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
  }
  a.u-link-blank {
    padding-right: 1.8rem;
  }
  a.u-link-blank::before {
    width: 1.4rem;
  }
  a.u-link-pdf {
    padding-right: 1.8rem;
  }
  a.u-link-pdf.--report {
    padding-right: 2.4rem;
  }
  a.u-link-pdf::before {
    width: 1.6rem;
  }
  a[href*="tel:"] {
    color: inherit;
    text-decoration: none;
    cursor: text;
    pointer-events: none;
  }
  .u-pc {
    display: none !important;
  }
  .u-radius-distorted-4 {
    border-radius: 2rem 0;
  }
  .u-radius-distorted-6 {
    border-radius: 3rem 0;
  }
  .u-radius-distorted-sp--1 {
    border-radius: 10px;
  }
  .u-radius-distorted-sp--2\.0 {
    border-radius: 2rem 0;
  }
  .u-radius-distorted-sp--2 {
    border-radius: 2.368rem 0;
  }
  .u-radius-distorted-sp--3 {
    border-radius: 30px;
  }
  .u-radius-distorted-sp--5 {
    border-radius: 4.9595rem 0;
  }
  .u-repeat-1, .u-repeat-2, .u-repeat-3, .u-repeat-4, .u-repeat-5, .u-repeat-6 {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-repeat-sm-1, .u-repeat-sm-2, .u-repeat-sm-3, .u-repeat-sm-4, .u-repeat-sm-5, .u-repeat-sm-6 {
    display: grid;
    grid-template-rows: repeat(auto-fill, 1fr);
  }
  .u-repeat-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-repeat-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-repeat-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-repeat-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-repeat-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .u-repeat-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .c-breadcrumb {
    margin-top: 1.2rem;
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .c-breadcrumb-lists {
    justify-content: inherit;
    max-width: inherit;
    padding-right: 1.6rem;
    padding-bottom: 0.4rem;
    padding-left: 1.6rem;
    word-break: normal;
  }
  .c-breadcrumb-list {
    white-space: nowrap;
  }
  .c-breadcrumb-list:first-child {
    flex: 1;
    text-align: right;
  }
  .c-breadcrumb-list:not(:first-child) {
    white-space: nowrap;
  }
  .c-breadcrumb-list:not(:first-child)::before {
    background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.7.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%208)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%234a4a4a%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cpath%20class%3D%22st1%22%20d%3D%22M0%2C16V0h16v16H0Z%22%2F%3E%0A%20%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10%2C8.4c0%2C.1%2C0%2C.3-.1.4l-3%2C3c-.2.2-.5.2-.7%2C0s-.2-.5%2C0-.7l2.6-2.6-2.6-2.6c-.2-.2-.2-.5%2C0-.7s.5-.2.7%2C0l3%2C3s.1.2.1.4v-.2Z%22%2F%3E%0A%3C%2Fsvg%3E') no-repeat center center;
    background-size: 100% auto;
  }
  .c-button.button-black-3.--pdf > .btn-label, .c-button.button-black-3.--dxf > .btn-label {
    padding: 0 2.8rem;
  }
  .c-company-nav-list {
    z-index: 1;
    position: relative;
  }
  .c-company-nav-list:not(:first-child)::before {
    width: 100%;
    height: 0.1rem;
  }
  .c-company-nav-link {
    justify-content: flex-start;
    padding: 1.2rem;
    line-height: 1.3;
  }
  .c-company-nav-link--label::before {
    top: 0.7rem;
  }
  .c-catalog-figure {
    margin-top: 2.4rem;
  }
  .c-catalog-nav {
    gap: 2.5rem 0;
  }
  .c-dl-3 {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 100%;
    grid-template-areas: "key" "value";
  }
  .c-dl-3 dd::before {
    display: none;
  }
  .c-dl-4 dt:not(:first-child) {
    margin-top: 2.4rem;
  }
  .entry-content h1:not(:first-child),
  .entry-content h2:not(:first-child),
  .entry-content h3:not(:first-child),
  .entry-content h4:not(:first-child),
  .entry-content h5:not(:first-child),
  .entry-content h6:not(:first-child) {
    margin: 2.2rem 0;
  }
  .entry-content p:not(:first-child),
  .entry-content ul:not(:first-child),
  .entry-content ol:not(:first-child),
  .entry-content figure:not(:first-child),
  .entry-content .wp-block-media-text:not(:first-child) {
    margin: 2.2rem 0;
  }
  .entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3) {
    font-size: 2.2rem;
  }
  .entry-content .wp-block-heading:not(.is-style-heading-type-2):not(.is-style-heading-type-3)::before {
    width: 12.4rem;
  }
  .entry-content .is-style-heading-type-1 {
    font-size: 2.2rem;
  }
  .entry-content .is-style-heading-type-1::before {
    width: 12.4rem;
  }
  .entry-content .is-style-heading-type-2 {
    font-size: 1.9rem;
  }
  .entry-content .is-style-heading-type-3 {
    font-size: 1.6rem;
  }
  .entry-content .alignleft {
    margin-right: 0;
    float: none;
  }
  .entry-content .alignright {
    margin-left: 0;
    float: none;
  }
  .entry-content table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  .c-faq-list {
    padding: 2.4rem 0;
  }
  .c-faq-list--q::before, .c-faq-list--a::before {
    top: 0.4rem;
    width: 3rem;
    font-size: 2.4rem;
  }
  .c-faq-list--a {
    margin-top: 1.2rem;
  }
  input[type=radio] + label {
    border-radius: 0.6rem;
  }
  .c-form-check--lists {
    flex-direction: column;
    gap: 1.2rem 0;
  }
  .c-form-defs dl:not(:first-child) {
    margin: 2.8rem 0 0 0;
  }
  .c-form-defs dt:has(.icon-require) .icon-require {
    top: 0;
  }
  .c-form-submit {
    flex-direction: column;
    align-items: center;
  }
  .c-history-list {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 100%;
    grid-template-areas: "year" "title" "body";
    padding: 2.4rem 0;
  }
  .c-news-link {
    z-index: 1;
    position: relative;
    flex-direction: column;
    padding-bottom: 2rem;
    gap: 0.4rem 0;
  }
  .c-news-link::before {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: var(--color-dark5);
    content: "";
  }
  .c-news-archive--link {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 12.4rem 1fr;
    grid-template-areas: "date icon" "title title";
    justify-content: flex-start;
    padding: 1.2rem 0;
    gap: 0.8rem;
    border-bottom: 0.1rem solid var(--color-dark7);
  }
  .c-news-archive--icon > .c-icon {
    width: auto;
  }
  .c-products-name {
    margin-top: 0.6rem;
    padding-left: 1.2rem;
  }
  .c-products-name::before {
    top: 1rem;
  }
  .c-product-cat-name {
    margin-top: 1rem;
  }
  .c-product-cat-caption {
    margin-top: 1rem;
  }
  .c-product-cat-more {
    margin-top: 0.6rem;
  }
  .c-product-cat-more--label {
    padding-right: 3.6rem;
  }
  .c-table-2 th,
  .c-table-2 td {
    display: block;
    width: 100%;
    padding: 1.6rem;
  }
  .c-table-2 tr:not(:first-child) th {
    border-top: none;
  }
  .c-table-2 tr td {
    border-top: none;
  }
  .c-title.heading-1 {
    padding-bottom: 0.8rem;
  }
  .c-title.heading-1 > .heading-1--en {
    font-size: 2.2rem;
  }
  .c-title.heading-1 > .heading-1--ja {
    padding-left: 3rem;
    font-size: 1.7rem;
  }
  .c-title.heading-1 > .heading-1--ja::before {
    top: 0.3rem;
    left: 1.45rem;
  }
  .c-title.heading-2 {
    padding-bottom: 0.8rem;
    border-bottom: 0.1rem solid var(--color-dark);
  }
  .c-title.heading-2 > .heading-2--en {
    font-size: 2.4rem;
  }
  .c-title.heading-2 > .heading-2--ja {
    padding-left: 3rem;
    font-size: 1.7rem;
  }
  .c-title.heading-2 > .heading-2--ja::before {
    top: 0.3rem;
    left: 1.45rem;
  }
  .c-title.heading-4 {
    font-size: 2.2rem;
  }
  .c-title.heading-4::before {
    width: 12.4rem;
  }
  .c-title.heading-5 {
    font-size: 1.9rem;
  }
  .c-icon.icon-require {
    font-size: 1.3rem;
  }
  .c-items-name {
    font-size: 1.6rem;
  }
  .c-pager-list {
    justify-content: center;
    gap: 0.8rem;
  }
  .c-pager-link.next, .c-pager-link.prev {
    width: 1.2rem;
  }
  .c-pager-link svg {
    width: 0.8rem;
  }
  .c-report-list {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 100%;
    grid-template-areas: "year" "title";
    padding: 2.4rem 0;
  }
  .c-sdgs-list {
    padding: 2.4rem 0;
  }
  .c-sdgs-content {
    margin-top: 2.8rem;
  }
  .c-sdgs-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
  }
  .c-usecase-link {
    grid-template-areas: "title" "figure" "caption";
  }
  .c-usecase-figure {
    margin-top: 2rem;
  }
  .c-usecase-title {
    margin-top: 0;
    font-size: 1.9rem;
    line-height: inherit;
  }
  .c-usecase-title--label {
    padding-right: 4rem;
  }
  .c-usecase-title--label::before {
    top: 0.8rem;
  }
  .c-splide-arrows.--detail .c-splide-arrow {
    background-color: var(--color-dark5);
  }
  .c-splide-arrows.--detail .c-splide-arrow--next {
    right: -2rem;
  }
  .c-splide-arrows.--detail .c-splide-arrow--prev {
    left: -2rem;
  }
  .c-splide-arrows.--detail .c-splide-arrow svg {
    width: 0.7rem;
  }
  .c-splide-arrow--prev {
    left: -2rem;
  }
  .c-splide-arrow--next {
    right: -2rem;
  }
  .c-modal {
    width: calc(100vw - 4rem);
    max-height: calc(100vh - 12rem);
  }
  .c-modal-wrap {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .c-drop-menu .gnav-submenu {
    height: 0;
    overflow: hidden;
  }
  .c-drop-menu .gnav-submenu.is-open {
    height: auto;
  }
  .c-drop-menu .gnav-submenu-list {
    margin: 0 auto;
  }
  .c-drop-menu .gnav-submenu-list > li a {
    padding: 4.1066666667vw 9.6vw;
  }
  .c-drop-menu .gnav-submenu-list > li .name::before {
    right: -0.5333333333vw;
    width: 1.3333333333vw;
    height: 2.4vw;
    background-size: 100% auto;
  }
  .p-header {
    gap: 1rem 1rem;
  }
  .p-header::before {
    height: 0.2rem;
  }
  .p-header-logo {
    padding-top: 0;
  }
  .p-header-logo--img {
    max-width: 10.8rem;
  }
  .p-header-close {
    padding: 2rem;
  }
  .p-gnav-link:not(.--search):not(.--online):not(.--contact) {
    padding: 0.8rem 2rem;
  }
  .p-footer {
    padding: 5rem 2rem 1.2rem;
  }
  .p-footer-grid {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "info" "menu" "buttons" "guide" "copyright";
    gap: 0;
  }
  .p-footer-info--name {
    text-align: center;
  }
  .p-footer-info--contact {
    text-align: center;
  }
  .p-footer-menu-rows {
    flex-direction: column;
    gap: 1rem 0;
  }
  .p-footer-buttons {
    max-width: 64vw;
    margin: 3.6rem auto 0;
    padding-top: 0;
  }
  .p-footer-guide {
    justify-content: center;
    margin-top: 3.4rem;
  }
  .p-footer-guide-link {
    font-size: 1.3rem;
  }
  .p-footer-copyright {
    margin-top: 3.2rem;
    font-size: 1.2rem;
    text-align: center;
  }
  .p-pagehead-inner {
    min-height: 10rem;
    padding: 0 2rem;
  }
  .p-pagehead-figure {
    text-align: right;
  }
  .p-pagehead-title {
    padding-left: 1.6rem;
  }
  .p-pagehead-title--en {
    font-size: 2.4rem;
  }
  .p-pagehead-title--ja {
    font-size: 2.4rem;
  }
  .p-pagehead-title--ja.--order {
    font-size: 1.6rem;
  }
  .p-pagehead-title--sub {
    font-size: 1.8rem;
  }
  .p-error-404-navi {
    margin-top: 3.2rem;
  }
  .p-catalog-caption {
    margin-top: 2rem;
  }
  .p-catalog-all {
    margin-top: 2rem;
  }
  .p-catalog-all--nav {
    margin-top: 2.8rem;
  }
  .p-catalog-lists {
    margin-top: 4.6rem;
    gap: 5.2rem;
  }
  .p-company-section:not(:first-child) {
    margin-top: 3.2rem;
  }
  .p-company-content {
    margin-top: 2.6rem;
  }
  .p-company-content--row {
    padding-bottom: 2.4rem;
  }
  .p-company-content--row:not(:first-child) {
    margin-top: 2.4rem;
  }
  .p-company-content--map iframe {
    height: 30rem;
  }
  .p-company-movie {
    margin-top: 2.6rem;
  }
  .p-company-movie {
    margin-top: 2rem;
  }
  .p-company-quality {
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "image" "body";
    margin-top: 2.6rem;
    padding: 2.8rem 0;
  }
  .p-company-sdgs {
    margin-top: 2.6rem;
  }
  .p-company-report {
    margin-top: 3.6rem;
  }
  .p-company-nav {
    margin-top: 3.6rem;
  }
  .p-detail-primary--inner {
    grid-template-rows: auto auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "head" "image" "body";
    margin-top: 1.8rem;
    gap: 0;
  }
  .p-detail-primary--image {
    margin-top: 2.6rem;
    padding-top: 0;
  }
  .p-detail-primary--title {
    font-size: 2rem;
  }
  .p-detail-primary--icons {
    margin-top: 0.6rem;
  }
  .p-detail-primary--article {
    margin-top: 1.9rem;
  }
  .p-detail-primary--files {
    margin-top: 3.1rem;
    gap: 1.5rem;
  }
  .p-detail-search {
    margin-top: 3.6rem;
  }
  .p-detail-search--form {
    padding: 0 2.4rem 2.8rem;
  }
  .p-detail-search--buttons {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem 0;
  }
  .p-detail-pricelist {
    margin-top: 3.6rem;
  }
  .p-detail-pricelist--inner {
    overflow-x: scroll !important;
    overflow-y: visible !important;
  }
  .p-faq-caption {
    margin-top: 2.4rem;
  }
  .p-faq-lists {
    margin-top: 2.6rem;
  }
  .p-inquiry-section:not(:first-child) {
    margin-top: 3.2rem;
  }
  .p-inquiry-caption {
    margin-top: 2.6rem;
  }
  .p-inquiry-form {
    margin-top: 2.6rem;
  }
  .p-inquiry-confirm {
    margin-top: 2.8rem;
  }
  .p-inquiry-submit {
    margin-top: 3.2rem;
  }
  .p-news-pager {
    margin: 4rem 0 0 0;
  }
  .p-news-nav {
    margin-top: 3.2rem;
  }
  .p-order-section:not(:first-child) {
    margin-top: 4.2rem;
  }
  .p-order-body {
    margin-top: 2.4rem;
  }
  .p-order-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 2.4rem;
  }
  .p-order-title {
    margin-top: 2.4rem;
  }
  .p-products-lists {
    margin-top: 2.6rem;
    gap: 4.6rem 1.5rem;
  }
  .p-products-search {
    margin-top: 3rem;
  }
  .p-products-itemhead--movie {
    margin-top: 2rem;
  }
  .p-products-items {
    margin-top: 3rem;
  }
  .p-products-itemslist {
    margin-top: 2.4rem;
    gap: 1.6rem 1.5rem;
  }
  .p-products-form {
    margin-top: 2.4rem;
    padding: 0 2.4rem 2.8rem;
  }
  .p-products-form--details {
    padding: 2rem 0;
  }
  .p-products-form--inner.--keyword {
    padding-top: 3rem;
    padding-bottom: 1.2rem;
  }
  .p-products-form--buttons {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem 0;
  }
  .p-privacy-caption {
    margin-top: 2.6rem;
  }
  .p-privacy-block {
    margin-top: 2.4rem;
  }
  .p-privacy-content {
    padding-bottom: 2.4rem;
  }
  .p-section-1::before {
    width: 100vw;
    min-width: inherit;
    margin: 0 -2rem;
  }
  .p-search-grid {
    grid-template-columns: 100%;
    grid-template-areas: "main";
  }
  .p-search-count {
    line-height: 1.35;
  }
  .p-search-defs {
    padding: 1.1rem 1.8rem;
  }
  .p-search-pager {
    margin: 4rem 0 0 0;
  }
  .p-search-itemslist {
    margin-top: 4rem;
    gap: 2rem 1.5rem;
  }
  .p-transaction-block:not(:first-child) {
    margin-top: 2.4rem;
  }
  .p-transaction-content {
    padding-bottom: 2.4rem;
  }
  .p-top-mv-title {
    top: 1rem;
    bottom: inherit;
    gap: 0.5rem 0;
    font-size: 2.6695rem;
  }
  html[lang=en-GB] .p-top-mv-title {
    font-size: 2.6rem;
  }
  .p-top-mv-title--bg.--second {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.4rem;
    padding: 0;
    gap: 1rem 0;
  }
  .p-top-mv-title--bg-sp.--first {
    padding: 0.55rem 1.7rem;
  }
  .p-top-mv-title--bg-sp.--second {
    padding: 0.28rem 1.7rem;
  }
  .p-top-mv-title--bg-sp.--third {
    padding: 0.55rem 0.4rem 0.55rem 1.7rem;
  }
  .p-top-mv-title--en {
    font-size: 3.2875rem;
  }
  .p-top-pickup {
    padding-top: 4.2rem;
    padding-bottom: 3.6rem;
  }
  .p-top-pickup-grid {
    z-index: 1;
    position: relative;
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "image" "body" "other";
    margin-top: 2.4rem;
    gap: 1.6rem 0;
  }
  .p-top-pickup-images {
    padding-top: 0;
  }
  .p-top-pickup-images--track {
    max-width: 66.6666666667vw;
    margin: 0 auto;
  }
  .p-top-pickup-body {
    max-width: 66.6666666667vw;
    margin: 0 auto;
    padding-bottom: 0;
  }
  .p-top-pickup-body--article {
    margin-top: 1rem;
  }
  .p-top-pickup-body--more {
    margin-top: 1.4rem;
  }
  .p-top-products {
    padding-top: 4.2rem;
  }
  .p-top-products-inner {
    padding-bottom: 0;
  }
  .p-top-products-inner::before {
    display: none;
  }
  .p-top-products-lists {
    margin-top: 2.4rem;
    gap: 1.8rem 1.5rem;
  }
  .p-top-news {
    padding-top: 3.2rem;
    padding-bottom: 4.7rem;
  }
  .p-top-news-inner {
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    grid-template-areas: "title" "lists";
    gap: 0 4rem;
  }
  .p-top-news-lists {
    padding-top: 1.6rem;
    gap: 0.2rem 0;
  }
  .p-top-news-lists::before {
    display: none;
  }
  .p-usecase-caption {
    margin-top: 1.8rem;
  }
  .p-usecase-lists {
    margin-top: 4.2rem;
    gap: 4.4rem;
  }
  .p-usecase-movie {
    margin-top: 2rem;
  }
  .p-usecase-items--list {
    gap: 1.6rem 1.5rem;
  }
  .p-usecase-items--nav {
    margin-top: 3.8rem;
  }
}
@media screen and (max-width: 600px){
  .admin-bar .l-header.is-sticky {
    top: 0;
  }
}
@media screen and (min-width: 768px){
  .l-sidebar {
    margin-left: 4rem;
    padding: 4rem 0 4rem 4rem;
    border-left: 1px solid #dedede;
  }
  .u-bg-check-pc {
    background: url('data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20328.6%20112%22%3E%0A%20%20%3C!--%20Generator%3A%20Adobe%20Illustrator%2029.8.2%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%202.1.1%20Build%203)%20%20--%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.st0%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20url(%23d)%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20none%3B%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%20%20.st2%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23f2f2f2%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%20%20%3Cpattern%20id%3D%22d%22%20x%3D%220%22%20y%3D%220%22%20width%3D%224%22%20height%3D%224%22%20patternTransform%3D%22translate(-72.4%20-15529)%20scale(1%20-1)%22%20patternUnits%3D%22userSpaceOnUse%22%20viewBox%3D%220%200%204%204%22%3E%0A%20%20%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st1%22%20width%3D%224%22%20height%3D%224%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st1%22%20width%3D%224%22%20height%3D%224%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%223%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20y%3D%221%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%223%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%221%22%20y%3D%222%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%222%22%20y%3D%223%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Crect%20class%3D%22st2%22%20x%3D%221%22%20width%3D%221%22%20height%3D%221%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fpattern%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cg%20id%3D%22c%22%3E%0A%20%20%20%20%3Crect%20class%3D%22st0%22%20x%3D%220%22%20width%3D%22328.5%22%20height%3D%22112%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E') repeat top center var(--color-white);
    background-size: 32.85rem auto;
  }
  .u-sp {
    display: none !important;
  }
  .c-drop-menu .gnav-submenu {
    z-index: 0;
    position: absolute;
    left: -1.8rem;
    width: 100%;
    opacity: 0;
  }
  .c-drop-menu .gnav-submenu-list > li:not(:first-child) a:hover {
    color: #fff;
  }
  .c-drop-menu .gnav-submenu-list > li a:hover {
    background-color: #000;
    color: #fff;
  }
}
@media screen and (min-width: 1280px){
  .u-xlarge-down {
    display: none;
  }
}
@media screen and (-ms-high-contrast: none){
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}