@charset "UTF-8";
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* --- container --- */
  --container: min(1200px, 100%);
  --container-lg: min(1400px, 100%);
  --container-sm: min(940px, 100%);
  --container-spacing: 2rem;
  /* --- z-index --- */
  --z-index-header: 900;
  /* --- color --- */
  /* base */
  --color-white: #fff;
  --color-black: #000;
  --color-gray-1: #595656;
  --color-gray-2: #838383;
  /* main */
  --color-primary: #d6000f;
  --color-secondary: #f5dcdc;
  --color-tertiary: #ffc9cd;
  --color-accent: #e20313;
  /* text */
  --color-text: #333;
  --color-text-primary: #b90915;
  /* border */
  --color-border: #c5c7c9;
  --color-border-primary: #dee2e9;
  /* background */
  --color-bg: #f7f7f7;
  --color-bg-primary: #ebedf0;
  --color-bg-secondary: var(--color-secondary);
  --color-bg-tertiary: var(--color-tertiary);
  --color-bg-gradation: #d80413, #fd5061 60%, #ff8393;
  /* status */
  --color-success: #127e6b;
  --color-important: var(--color-primary);
  --color-disabled: var(--color-gray-2);
  /* input */
  --color-input-bg: var(--color-white);
  --color-input-border: var(--color-border);
  --color-input-text: var(--color-text);
  --color-input-placeholder: var(--color-gray-2);
  --color-input-focus: var(--color-primary);
  /* radius */
  --radius-xsmall: 1rem;
  --radius-small: 2rem;
  --radius-medium: 5rem;
  --radius-circle: 50%;
  --radius-max: 100vmax;
  /* shadow */
  --shadow-lv1: 0 0 0 0 rgba(0, 0, 0, 0.2);
  --shadow-lv2: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --family-sans:
    "Zen Kaku Gothic New", 遊ゴシック体, "Yu Gothic", yugothic,
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, meiryo,
    osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  --family-english: "Montserrat", serif;
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 11.8rem;
}
@media screen and (max-width: 767px) {
  :root {
    --radius-medium: 2.5rem;
  }
}
@media screen and (max-width: 1023px) {
  :root {
    --header-height: 7rem;
  }
}

/* ----------------------------------------------------
settings
---------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 10px;
}
@media screen and (max-width: 1240px) {
  html {
    font-size: 0.8064516129vw;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html.is-scroll-hide {
  overflow: hidden;
}

a[href*="tel:"] {
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:not([class]),
button:not([class]) {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:not([class]):hover,
  button:not([class]):hover {
    opacity: 0.7;
  }
}

img,
svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

body {
  font-family: var(--family-sans);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
  background-color: var(--color-bg);
  position: relative;
}
body.is-scroll-hide {
  overflow: hidden;
}

main {
  margin-top: var(--header-height);
}

/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

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

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

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

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

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: none;
}

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

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

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

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

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

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

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

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* ---------- container ---------- */
.l-container {
  max-width: calc(var(--container) + var(--container-spacing) * 2);
  padding-inline: var(--container-spacing);
  margin-inline: auto;
}

.l-container-sm {
  max-width: calc(var(--container-sm) + var(--container-spacing) * 2);
  padding-inline: var(--container-spacing);
  margin-inline: auto;
}

/* ---------- header ---------- */
.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: var(--header-height);
}

/* ---------- inner ----------*/
.l-round {
  border-radius: var(--radius-medium);
}

.l-round-sm {
  border-radius: var(--radius-small);
}

.c-accordion {
  --_text-color: var(--color-text);
  --_background-default: var(--color-white);
  --_background-interactive: var(--color-gray);
  --_background-opened: var(--color-accent);
  --_text-color-opened: var(--color-white);
  --_duration: 0.2s;
}

.c-accordion__details::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .c-accordion__details::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
.c-accordion__details:not([open])::details-content {
  grid-template-rows: 0fr;
}
.c-accordion__details[open]::details-content {
  grid-template-rows: 1fr;
}
.c-accordion__details + .c-accordion__details {
  margin-top: 2.4rem;
}

.c-accordion__summary {
  position: relative;
  display: block;
  padding-block: 1.6rem;
  padding-inline: 2.4rem;
  color: var(--_text-color);
  cursor: pointer;
  background-color: var(--_background-default);
  transition: background-color var(--_duration) ease, color var(--_duration) ease;
}
.c-accordion__summary:focus-visible {
  background-color: var(--_background-interactive);
  outline: 2px solid currentcolor;
  outline-offset: -2px;
}
@media (hover: hover) {
  .c-accordion__summary:hover {
    background-color: var(--_background-interactive);
  }
}

.c-accordion__btn {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  grid-area: icon;
  width: 1.8rem;
  aspect-ratio: 1;
}
.c-accordion__btn::before, .c-accordion__btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  content: "";
  background-color: currentcolor;
  translate: -50%, -50%;
}
.c-accordion__btn::after {
  transition: rotate var(--_duration) ease;
  rotate: 90deg;
}

.c-accordion__details[open] .c-accordion__summary {
  color: var(--_text-color-opened);
  background-color: var(--_background-opened);
}
.c-accordion__details[open] .c-accordion__summary .c-accordion__btn::after {
  rotate: 0deg;
}

.c-accordion__target {
  overflow: hidden;
}

.c-accordion__contents {
  padding: 1.6rem 2.4rem;
}

/* ---------- anchor ----------*/
.c-anchor {
  background-color: var(--color-white);
  border-radius: 1.2rem;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem 3rem;
}
@media screen and (max-width: 767px) {
  .c-anchor {
    padding: 2rem 1.6rem;
    gap: 1.6rem 1.2rem;
  }
}

.c-anchor__link {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.c-anchor__link::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_dropdown.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .c-anchor__link::after {
    width: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-anchor__link {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

/* ---------- button ---------- */
.c-btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem 2rem;
  width: 100%;
  max-width: 24rem;
  min-height: 5.2rem;
  background-color: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-max);
  transition: background-color var(--duration) ease;
  /* --- position ---*/
  /* --- color ---*/
}
@media screen and (max-width: 767px) {
  .c-btn-primary {
    height: 5.6rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-inline: 3.4rem 1.8rem;
    max-width: 35rem;
    margin-inline: auto;
  }
}
.c-btn-primary p {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: transform var(--duration) ease;
}
.c-btn-primary span {
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-circle);
  position: relative;
  overflow: hidden;
  transition: background-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .c-btn-primary span {
    width: 2rem;
    min-width: 2rem;
  }
}
.c-btn-primary span::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 5/7;
  background: var(--color-text);
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  transition: background var(--duration) ease;
}
.c-btn-primary span::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 5/7;
  background: var(--color-primary);
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-45% - 2rem), -50%);
}
.c-btn-primary[data-position=left] {
  margin-inline: 0 auto;
}
.c-btn-primary[data-position=center] {
  margin-inline: auto;
}
.c-btn-primary[data-position=right] {
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .c-btn-primary[data-position-sp=left] {
    margin-inline: 0 auto;
  }
  .c-btn-primary[data-position-sp=center] {
    margin-inline: auto;
  }
  .c-btn-primary[data-position-sp=right] {
    margin-inline: auto 0;
  }
}
.c-btn-primary[data-color=black] span::after {
  background: var(--color-white);
}
@media (hover: hover) {
  .c-btn-primary[data-color=black]:hover {
    background-color: var(--color-white);
    color: var(--color-text);
  }
  .c-btn-primary[data-color=black]:hover span {
    background-color: var(--color-text);
  }
  .c-btn-primary[data-color=black]:hover span::before {
    background: var(--color-white);
  }
}
@media (hover: hover) {
  .c-btn-primary:hover {
    background-color: var(--color-primary);
  }
  .c-btn-primary:hover p {
    transform: translateX(0.4rem);
  }
  .c-btn-primary:hover span::before {
    background: var(--color-primary);
    transform: translate(calc(-45% + 2rem), -50%);
    transition: transform var(--duration) ease, background var(--duration) ease;
  }
  .c-btn-primary:hover span::after {
    transform: translate(-45%, -50%);
    transition: transform var(--duration) ease 0.2s;
  }
}

.c-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem 2rem;
  width: 100%;
  max-width: 28rem;
  min-height: 5.2rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  background-color: var(--color-bg);
  color: var(--color-text);
  border-radius: var(--radius-max);
  transition: background-color var(--duration) ease, color var(--duration) ease;
  /* --- position ---*/
}
@media screen and (max-width: 767px) {
  .c-btn-secondary {
    height: 5.6rem;
    max-width: 35rem;
    padding-inline: 3rem 1.8rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-inline: auto;
  }
}
.c-btn-secondary span {
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
  position: relative;
  transition: background-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .c-btn-secondary span {
    width: 2rem;
    min-width: 2rem;
  }
}
.c-btn-secondary span::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 5/7;
  background: var(--color-white);
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  transition: background var(--duration) ease;
}
.c-btn-secondary[data-position=left] {
  margin-inline: 0 auto;
}
.c-btn-secondary[data-position=center] {
  margin-inline: auto;
}
.c-btn-secondary[data-position=right] {
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .c-btn-secondary[data-position-sp=left] {
    margin-inline: 0 auto;
  }
  .c-btn-secondary[data-position-sp=center] {
    margin-inline: auto;
  }
  .c-btn-secondary[data-position-sp=right] {
    margin-inline: auto 0;
  }
}
@media (hover: hover) {
  .c-btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-btn-secondary:hover span {
    background-color: var(--color-white);
  }
  .c-btn-secondary:hover span::before {
    background: var(--color-primary);
  }
}

.c-btn-tertiary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  width: 100%;
  max-width: 24rem;
  min-height: 5.2rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 700;
  background-color: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-max);
  transition: background-color var(--duration) ease;
  /* --- position ---*/
}
@media screen and (max-width: 767px) {
  .c-btn-tertiary {
    height: 4.8rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-inline: 1.6rem;
    max-width: 35rem;
    margin-inline: auto;
  }
}
.c-btn-tertiary[data-position=left] {
  margin-inline: 0 auto;
}
.c-btn-tertiary[data-position=center] {
  margin-inline: auto;
}
.c-btn-tertiary[data-position=right] {
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .c-btn-tertiary[data-position-sp=left] {
    margin-inline: 0 auto;
  }
  .c-btn-tertiary[data-position-sp=center] {
    margin-inline: auto;
  }
  .c-btn-tertiary[data-position-sp=right] {
    margin-inline: auto 0;
  }
}
.c-btn-tertiary:disabled {
  background-color: var(--color-disabled);
  cursor: not-allowed;
}
@media (hover: hover) {
  .c-btn-tertiary:not(:disabled):hover {
    background-color: var(--color-primary);
  }
}

.c-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 58rem;
  height: 19.8rem;
  border-radius: 1.2rem;
  padding-inline: 10.4rem;
  position: relative;
  transition: background-color var(--duration) ease, color var(--duration) ease;
  /* --- color ---*/
  /* --- size ---*/
}
@media screen and (max-width: 767px) {
  .c-btn-cta {
    justify-content: flex-start;
    max-width: 35rem;
    height: 12rem;
    padding-inline: 3.2rem 6rem;
  }
}
.c-btn-cta > span {
  width: 5.2rem;
  aspect-ratio: 1;
  transform: translate(0);
  border: 0.1rem solid #c5c7c9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%);
  transition: border-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .c-btn-cta > span {
    width: 3.2rem;
  }
}
.c-btn-cta > span::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  aspect-ratio: 9/15;
  background: var(--color-primary);
  mask-image: url(../img/common/icon_arrow_splider.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .c-btn-cta > span::before {
    width: 0.6rem;
    aspect-ratio: 6/10;
    mask-image: url(../img/common/icon_arrow.svg);
    transform: translate(-45%, -50%);
  }
}
.c-btn-cta[data-color=white] {
  background-color: var(--color-white);
}
@media (hover: hover) {
  .c-btn-cta[data-color=white]:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-btn-cta[data-color=white]:hover > span {
    border-color: var(--color-white);
  }
  .c-btn-cta[data-color=white]:hover > span::before {
    background: var(--color-white);
  }
}
.c-btn-cta[data-color=black] {
  color: var(--color-white);
  background-color: var(--color-text);
}
.c-btn-cta[data-color=black] > span {
  border-color: var(--color-white);
}
.c-btn-cta[data-color=black] > span::before {
  background: var(--color-white);
}
@media (hover: hover) {
  .c-btn-cta[data-color=black]:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .c-btn-cta[data-color=black]:hover > span {
    border-color: var(--color-white);
  }
  .c-btn-cta[data-color=black]:hover > span::before {
    background: var(--color-white);
  }
}
.c-btn-cta[data-color=primary] {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.c-btn-cta[data-color=primary] > span {
  border-color: var(--color-white);
}
.c-btn-cta[data-color=primary] > span::before {
  background: var(--color-white);
}
@media (hover: hover) {
  .c-btn-cta[data-color=primary]:hover {
    background-color: var(--color-accent);
  }
}
.c-btn-cta[data-size=small] {
  height: 13.8rem;
}
@media screen and (max-width: 767px) {
  .c-btn-cta[data-size=small] {
    height: 10rem;
  }
}
.c-btn-cta[data-size=small] .c-btn-cta__text {
  gap: 0.6rem;
}

.c-btn-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__text {
    align-items: flex-start;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    letter-spacing: 0em;
    gap: 0.5rem;
  }
}
.c-btn-cta__text b {
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__text b {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

/* ---------- case ----------*/
.c-case__link {
  display: block;
}
@media (hover: hover) {
  .c-case__link:hover .c-case__img img {
    transform: scale(1.03);
  }
  .c-case__link:hover .c-case__title span {
    background-size: 100% 0.1rem;
    background-position: bottom left;
  }
}

.c-case__img {
  background-color: var(--color-white);
  border-radius: 0.8rem;
  overflow: hidden;
}
.c-case__img img {
  width: 100%;
  aspect-ratio: 442/264;
  transition: transform 0.3s cubic-bezier(0.3, 0.015, 0.12, 1);
}

.c-case__title {
  margin-top: 2.8rem;
}
.c-case__title span {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  font-weight: 500;
  background-image: linear-gradient(var(--color-text), var(--color-text));
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  background-size: 0 0.1rem;
  background-position: bottom right;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-case__title span {
    margin-top: 2rem;
  }
}

/* ---------- cat ----------*/
.c-cat {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  font-size: 1.2rem;
  line-height: 1.9166666667;
  font-weight: 500;
  padding-inline: 1rem;
  border-radius: 0.4rem;
}

a.c-cat {
  transition: opacity var(--duration) ease;
}
@media (hover: hover) {
  a.c-cat:hover {
    opacity: 0.7;
  }
}

/* ---------- column ----------*/
.c-column__link {
  display: block;
}
@media (hover: hover) {
  .c-column__link:hover .c-column__img img {
    transform: scale(1.03);
  }
  .c-column__link:hover .c-column__title span {
    background-size: 100% 0.1rem;
    background-position: bottom left;
  }
}

.c-column__img {
  background-color: var(--color-white);
  border-radius: 0.8rem;
  overflow: hidden;
}
.c-column__img img {
  width: 100%;
  aspect-ratio: 374/224;
  transition: transform 0.3s cubic-bezier(0.3, 0.015, 0.12, 1);
}

.c-column__title span {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.02em;
  font-weight: 700;
  background-image: linear-gradient(var(--color-text), var(--color-text));
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  background-size: 0 0.1rem;
  background-position: bottom right;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-column__title span {
    font-size: 1.7rem;
    line-height: 1.5294117647;
  }
}

.c-column__cap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
}

.c-column__date {
  font-family: var(--family-english);
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-gray-2);
}

.c-column__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}

.c-column__tag-item {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: var(--color-gray-2);
}
.c-column__tag-item::before {
  content: "#";
}

/* ---------- contact ----------*/
.c-contact {
  background: url(../img/common/contact_bg.jpg) no-repeat center/cover;
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-contact__object {
  display: block;
  width: 177.4rem;
  aspect-ratio: 1774/588;
  position: absolute;
  bottom: 4.4rem;
  left: 50%;
  transform: translateX(-43%) rotate(-32deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-contact__object {
    width: 83.4rem;
    bottom: 20.6rem;
    transform: translateX(-48%) rotate(-53deg);
  }
}
.c-contact__object svg #contact-mask path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 82;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 4000px;
  stroke-dashoffset: 4000px;
}
.c-contact__object svg .st0 {
  fill: url(#contact-gradation);
}
.c-contact__object svg #contact-object {
  mask: url(#contact-mask-wrapper);
}

.c-contact__container {
  padding-block: 16.2rem 20.7rem;
}
@media screen and (max-width: 767px) {
  .c-contact__container {
    padding-block: 8.4rem 10.2rem;
  }
}

.c-contact__title {
  font-family: var(--family-english);
  font-size: 8.8rem;
  line-height: 1.1363636364;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-contact__title {
    font-size: 5.2rem;
    line-height: 1.0769230769;
  }
}

.c-contact__btn {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-contact__btn {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-contact__btn {
    gap: 1rem;
  }
}

/* ---------- cv ----------*/
.c-cv {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-cv {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-cv {
    gap: 1rem;
  }
}

/* ---------- desc ----------*/
.c-desc {
  width: min(86rem, 100%);
  margin-inline: auto;
}

.c-desc-sm {
  width: min(54rem, 100%);
  margin-inline: auto;
}

/* ---------- dl box ----------*/
.c-dl-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-dl-box {
    gap: 1.6rem;
  }
}

.c-dl-box__col {
  display: flex;
  border: 0.1rem solid var(--color-gray-1);
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-dl-box__col {
    flex-direction: column;
  }
}

.c-dl-box__dt {
  width: 26rem;
  background-color: var(--color-gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .c-dl-box__dt {
    width: 100%;
  }
}

.c-dl-box__dd {
  flex: 1;
  background-color: var(--color-white);
  padding: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .c-dl-box__dd {
    padding: 1.6rem;
  }
}

/* ---------- dl ----------*/
.c-dl {
  border-top: 0.1rem solid var(--color-border);
}

.c-dl__col {
  display: flex;
  gap: 4rem;
  padding-block: 3rem;
  border-bottom: 0.1rem solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-dl__col {
    flex-direction: column;
    gap: 1.6rem;
    padding-block: 2rem;
  }
}

.c-dl__dt {
  min-width: 21rem;
}
@media screen and (max-width: 767px) {
  .c-dl__dt {
    min-width: auto;
    font-weight: 700;
  }
}

.c-dl__dd {
  flex: 1;
}

/* ---------- single editor style ----------*/
.c-editor-body {
  /* --- basic ---*/
  /* --- toc ---*/
}
.c-editor-body > *:first-child {
  margin-top: 0;
}
.c-editor-body h2 {
  margin-top: 6rem;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 700;
  border-left: 0.5rem solid var(--color-primary);
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-editor-body h2 {
    margin-top: 5rem;
    font-size: 2.4rem;
    line-height: 1.25;
  }
}
.c-editor-body h3 {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .c-editor-body h3 {
    margin-top: 3rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.c-editor-body h4 {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .c-editor-body h4 {
    margin-top: 3rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.c-editor-body p {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .c-editor-body p {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.c-editor-body > p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body > p {
    margin-top: 1.6rem;
  }
}
.c-editor-body a:not([class]) {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-editor-body .wp-block-image {
  margin-top: 4rem;
}
.c-editor-body .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-small);
}
.c-editor-body .wp-element-caption {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  letter-spacing: 0.02em;
  color: var(--color-gray-2);
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-element-caption {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}
.c-editor-body .wp-block-quote {
  margin-top: 4rem;
  border-top: 0.1rem solid var(--color-bg-primary);
  border-bottom: 0.1rem solid var(--color-bg-primary);
  padding: 4rem 5rem 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-quote {
    padding: 5rem 1rem 3rem;
  }
}
.c-editor-body .wp-block-quote::before {
  content: "“";
  display: inline-block;
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  position: absolute;
  top: 1.4rem;
  left: 1rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-quote::before {
    top: 0.8rem;
  }
}
.c-editor-body .wp-block-quote p + p {
  margin-top: 1rem;
}
.c-editor-body .wp-block-quote cite {
  display: block;
  text-align: right;
  font-size: smaller;
}
.c-editor-body .wp-block-list {
  margin-top: 4rem;
  margin-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-list {
    margin-top: 3rem;
  }
}
.c-editor-body .wp-block-list .wp-block-list {
  margin-block: 0;
}
.c-editor-body .wp-block-list li {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-list li {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.c-editor-body .wp-block-list li::marker {
  color: var(--color-primary);
}
.c-editor-body .wp-block-list li + li {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-list li + li {
    margin-top: 0.4rem;
  }
}
.c-editor-body ul.wp-block-list {
  list-style-type: disc;
}
.c-editor-body ul.wp-block-list li::marker {
  font-size: 0.8em;
}
.c-editor-body ol.wp-block-list {
  list-style-type: decimal;
}
.c-editor-body table {
  margin-top: 4rem;
}
.c-editor-body table.has-fixed-layout tr td:first-of-type {
  min-width: auto;
}
.c-editor-body table th,
.c-editor-body table td {
  border: 0.1rem solid var(--color-bg-primary);
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.c-editor-body table th {
  text-align: center;
  font-weight: 700;
}
.c-editor-body table td {
  background-color: var(--color-white);
}
.c-editor-body code {
  background-color: #f0f0f0;
  padding: 1rem;
  overflow: auto;
}
.c-editor-body .wp-block-columns {
  margin-top: 6rem;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-columns {
    flex-direction: column;
    gap: 4rem;
  }
}
.c-editor-body .wp-block-column *:first-child {
  margin-top: 0;
}
.c-editor-body .wp-block-column > * {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-column > * {
    margin-top: 1.5rem;
  }
}
.c-editor-body dl {
  margin-top: 4.8rem;
  border-top: 0.1rem solid var(--color-border);
  display: grid;
  grid-template-columns: auto 1fr;
}
.c-editor-body dt {
  width: 20rem;
  font-weight: 700;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body dt {
    width: 12rem;
  }
}
.c-editor-body dt,
.c-editor-body dd {
  padding-block: 1.6rem;
  border-bottom: 0.1rem solid var(--color-border);
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .c-editor-body dt,
  .c-editor-body dd {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.c-editor-body #toc_container {
  margin-top: 4rem;
  padding: 3.2rem 3.2rem 3.6rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .c-editor-body #toc_container {
    padding: 2.4rem 1.6rem;
  }
}
.c-editor-body #toc_container .toc_title {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-editor-body #toc_container ul {
  counter-reset: num;
}
.c-editor-body #toc_container li::before {
  content: counters(num, "-") ". ";
  counter-increment: num;
  display: inline-block;
  white-space: nowrap;
}
.c-editor-body #toc_container a {
  color: var(--color-text);
}
.c-editor-body #toc_container .toc_list {
  margin-top: 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-editor-body #toc_container .toc_list > li::before {
  text-decoration: none;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-primary);
  margin-right: 1rem;
}
.c-editor-body #toc_container .toc_list > li > a {
  font-size: 1.6rem;
  line-height: 1.875;
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}
.c-editor-body #toc_container .toc_list > li > ul {
  margin-top: 1.6rem;
  padding-left: 2.3rem;
}
.c-editor-body #toc_container .toc_list > li > ul li::before {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 500;
  color: var(--color-primary);
  margin-right: 0.8rem;
}
.c-editor-body #toc_container .toc_list > li > ul li a {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  text-decoration: none;
}
.c-editor-body #toc_container .toc_list > li > ul li + li {
  margin-top: 0.8rem;
}

.c-en {
  font-family: var(--family-english);
  width: max-content;
  display: block;
  pointer-events: none;
  position: absolute;
  left: 0;
}

/* ---------- fixed ----------*/
.c-fixed {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.c-fixed__inner {
  display: flex;
  background-color: var(--color-white);
  border-radius: 1.6rem 1.6rem 0 0;
  position: relative;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.c-fixed__btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  height: 5rem;
  padding-left: 1.4rem;
}
.c-fixed__btn > span {
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-fixed__btn > span {
    width: 2rem;
    min-width: 2rem;
  }
}
.c-fixed__btn > span::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 5/7;
  background: var(--color-white);
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
}

.c-fixed__text {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--color-gray-2);
}
.c-fixed__text b {
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-text);
}

/* ---------- flex ----------*/
.c-flex {
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .c-flex {
    max-width: 48rem;
    margin-inline: auto;
    flex-direction: column;
    gap: 2rem;
  }
}
.c-flex.c-flex--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-flex.c-flex--reverse {
    flex-direction: column;
  }
}

.c-flex-flex-wrap {
  flex-wrap: wrap;
}

.c-flex-justify-between {
  justify-content: space-between;
}

.c-flex-justify-evenly {
  justify-content: space-evenly;
}

.c-flex-justify-center {
  justify-content: center;
}

.c-flex-justify-start {
  justify-content: flex-start;
}

.c-flex-justify-end {
  justify-content: flex-end;
}

.c-flex-items-center {
  align-items: center;
}

.c-flex-items-start {
  align-items: flex-start;
}

.c-flex-items-end {
  align-items: flex-end;
}

.c-flex__img {
  flex: 1;
}
.c-flex__img img {
  aspect-ratio: 560/337;
  object-fit: cover;
  border-radius: 1.2rem;
}
.c-flex__img.c-flex__img--ratio1 img {
  aspect-ratio: 1;
}

.c-flex__content {
  flex: 1;
}

/* ---------- form ----------*/
.c-form__download .wpcf7__image-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-form__download .wpcf7__image-checkbox-label {
  background-color: var(--color-input-bg);
  display: flex;
  align-items: center;
  border-radius: 1.2rem;
  padding: 3.2rem 3.2rem 3.2rem 3.4rem;
  border: 0.1rem solid var(--color-input-bg);
}
@media screen and (max-width: 767px) {
  .c-form__download .wpcf7__image-checkbox-label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem 1.6rem;
    padding: 1.6rem;
  }
}
.c-form__download .wpcf7__image-checkbox-label:has(input[type=checkbox]:checked) {
  border-color: var(--color-input-focus);
}
.c-form__download .wpcf7__image-checkbox-label input[type=checkbox] {
  cursor: pointer;
  width: 2.5rem;
  min-width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--color-input-border);
  margin-right: 3.5rem;
  background-color: var(--color-input-bg);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-form__download .wpcf7__image-checkbox-label input[type=checkbox] {
    grid-area: 1/1/3/2;
    margin-right: 0;
  }
}
.c-form__download .wpcf7__image-checkbox-label input[type=checkbox]:checked {
  background-color: var(--color-input-focus);
  border-color: var(--color-input-focus);
}
.c-form__download .wpcf7__image-checkbox-label input[type=checkbox]:checked:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: url(../img/common/icon_checkbox.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-form__download .wpcf7__image-checkbox-image {
  width: 100%;
  max-width: 28rem;
  margin-right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-form__download .wpcf7__image-checkbox-image {
    grid-area: 1/2/2/3;
  }
}
.c-form__download .wpcf7__image-checkbox-image img {
  border-radius: 0.8rem;
}
.c-form__download .wpcf7__image-checkbox-content {
  width: 100%;
  max-width: 76.2rem;
}
@media screen and (max-width: 767px) {
  .c-form__download .wpcf7__image-checkbox-content {
    grid-area: 2/2/3/3;
  }
}
.c-form__download .wpcf7__image-checkbox-text-title {
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-form__download .wpcf7__image-checkbox-text-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.c-form__download .wpcf7__image-checkbox-text {
  margin-top: 1.9rem;
}
@media screen and (max-width: 767px) {
  .c-form__download .wpcf7__image-checkbox-text {
    margin-top: 0.8rem;
  }
}
.c-form__download + .c-form__body {
  margin-top: 6rem;
}

.c-form__body {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-small);
  padding: 6.2rem 7rem 10.6rem;
}
@media screen and (max-width: 767px) {
  .c-form__body {
    padding: 3.2rem 2rem;
  }
}

.c-form__col {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .c-form__col {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-form__col:has(textarea, input[type=radio], input[type=checkbox]) {
  align-items: flex-start;
}
.c-form__col + .c-form__col {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-form__col + .c-form__col {
    margin-top: 3.2rem;
  }
}

.c-form__label {
  min-width: 24rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-form__label {
    min-width: auto;
    gap: 1rem;
  }
}

.c-form__required {
  min-width: max-content;
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: var(--color-important);
  border-radius: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: var(--color-white);
}

.c-form__input {
  width: 100%;
  max-width: 74rem;
}
@media screen and (max-width: 767px) {
  .c-form__input {
    max-width: none;
  }
}
.c-form__input input[type=text],
.c-form__input input[type=email],
.c-form__input input[type=tel],
.c-form__input input[type=number],
.c-form__input input[type=url],
.c-form__input select,
.c-form__input textarea {
  display: block;
  width: 100%;
  background-color: var(--color-input-bg);
  border: 0.1rem solid var(--color-input-border);
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 1.1rem 1.6rem;
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-form__input input[type=text],
  .c-form__input input[type=email],
  .c-form__input input[type=tel],
  .c-form__input input[type=number],
  .c-form__input input[type=url],
  .c-form__input select,
  .c-form__input textarea {
    font-size: 1.4rem;
  }
}
.c-form__input input[type=number] {
  -moz-appearance: textfield;
}
.c-form__input input[type=number]::-webkit-outer-spin-button, .c-form__input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-form__input select {
  padding-right: 2.4rem;
}
.c-form__input textarea {
  height: 18rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .c-form__input textarea {
    height: 16rem;
  }
}
.c-form__input .wpcf7-form-control-wrap:has(select) {
  position: relative;
}
.c-form__input .wpcf7-form-control-wrap:has(select)::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 5/7;
  background: var(--color-input-text);
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: rotate(90deg);
  position: absolute;
  top: 1.8rem;
  right: 1.2rem;
  pointer-events: none;
}
.c-form__input input[type=radio] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid var(--color-input-border);
  border-radius: 50%;
  background-color: var(--color-input-bg);
  cursor: pointer;
}
.c-form__input input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-input-focus);
}
.c-form__input input[type=checkbox] {
  cursor: pointer;
  width: 2rem;
  min-width: 2rem;
  aspect-ratio: 1;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--color-input-border);
  background-color: var(--color-input-bg);
  position: relative;
}
.c-form__input input[type=checkbox]:checked {
  background-color: var(--color-input-focus);
  border-color: var(--color-input-focus);
}
.c-form__input input[type=checkbox]:checked:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: url(../img/common/icon_checkbox.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-form__input .wpcf7-radio,
.c-form__input .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.c-form__input .wpcf7-list-item:has(input[type=radio], input[type=checkbox]) {
  margin-left: 0;
}
.c-form__input label {
  font-size: 1.6rem;
}
.c-form__input label:has(input[type=radio], input[type=checkbox]) {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.c-form__input .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-weight: 500;
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  color: var(--color-important);
}
.c-form__input .wpcf7-not-valid-tip::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_error.svg) center/contain no-repeat;
}

.c-form__text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.c-form__btn {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

/* --- confirm ---*/
.wpcf7cp-form-hide .c-form {
  display: none;
}

.p-download-form__wrap #wpcf7cpcnf,
.p-contact-form__wrap #wpcf7cpcnf {
  position: static;
}
.p-download-form__wrap #wpcf7cpcnf table,
.p-contact-form__wrap #wpcf7cpcnf table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-download-form__wrap #wpcf7cpcnf table th,
.p-download-form__wrap #wpcf7cpcnf table td,
.p-contact-form__wrap #wpcf7cpcnf table th,
.p-contact-form__wrap #wpcf7cpcnf table td {
  word-break: break-all;
  padding: 1rem;
  border: 0.1rem solid var(--color-border);
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-download-form__wrap #wpcf7cpcnf table th,
  .p-download-form__wrap #wpcf7cpcnf table td,
  .p-contact-form__wrap #wpcf7cpcnf table th,
  .p-contact-form__wrap #wpcf7cpcnf table td {
    padding: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-download-form__wrap #wpcf7cpcnf table th,
.p-contact-form__wrap #wpcf7cpcnf table th {
  width: 24rem;
  background-color: var(--color-bg-primary);
}
@media screen and (max-width: 767px) {
  .p-download-form__wrap #wpcf7cpcnf table th,
  .p-contact-form__wrap #wpcf7cpcnf table th {
    width: 45%;
  }
}
.p-download-form__wrap #wpcf7cpcnf table td,
.p-contact-form__wrap #wpcf7cpcnf table td {
  background-color: var(--color-white);
}
.p-download-form__wrap .wpcf7cp-btns,
.p-contact-form__wrap .wpcf7cp-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-download-form__wrap .wpcf7cp-btns,
  .p-contact-form__wrap .wpcf7cp-btns {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-download-form__wrap .wpcf7cp-cfm-edit-btn,
.p-download-form__wrap .wpcf7cp-cfm-submit-btn,
.p-contact-form__wrap .wpcf7cp-cfm-edit-btn,
.p-contact-form__wrap .wpcf7cp-cfm-submit-btn {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  width: 100%;
  max-width: 24rem;
  min-height: 5.2rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-white);
  border-radius: var(--radius-max);
  transition: background-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-download-form__wrap .wpcf7cp-cfm-edit-btn,
  .p-download-form__wrap .wpcf7cp-cfm-submit-btn,
  .p-contact-form__wrap .wpcf7cp-cfm-edit-btn,
  .p-contact-form__wrap .wpcf7cp-cfm-submit-btn {
    height: 4.8rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-inline: 1.6rem;
    max-width: 35rem;
    margin-inline: auto;
  }
}
.p-download-form__wrap .wpcf7cp-cfm-edit-btn,
.p-contact-form__wrap .wpcf7cp-cfm-edit-btn {
  background-color: var(--color-gray-1);
}
@media (hover: hover) {
  .p-download-form__wrap .wpcf7cp-cfm-edit-btn:hover,
  .p-contact-form__wrap .wpcf7cp-cfm-edit-btn:hover {
    background-color: var(--color-black);
  }
}
.p-download-form__wrap .wpcf7cp-cfm-submit-btn,
.p-contact-form__wrap .wpcf7cp-cfm-submit-btn {
  background-color: var(--color-primary);
}
@media (hover: hover) {
  .p-download-form__wrap .wpcf7cp-cfm-submit-btn:hover,
  .p-contact-form__wrap .wpcf7cp-cfm-submit-btn:hover {
    background-color: var(--color-accent);
  }
}

/* ---------- grid ----------*/
.c-grid {
  display: grid;
}
.c-grid[data-layout=column-3] {
  grid-template-columns: repeat(3, 1fr);
  gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-grid[data-layout=column-3] {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }
}
.c-grid[data-layout=column-4] {
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-grid[data-layout=column-4] {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-grid__item-link {
  display: block;
}
@media (hover: hover) {
  .c-grid__item-link:hover .c-grid__item-img img {
    transform: scale(1.03);
  }
  .c-grid__item-link:hover .c-grid__item-text span {
    background-size: 100% 0.1rem;
    background-position: bottom left;
  }
}

.c-grid__item-img {
  overflow: hidden;
  border-radius: 0.8rem;
}
.c-grid__item-img img {
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.3, 0.015, 0.12, 1);
}

.c-grid__item-text {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-grid__item-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.c-grid__item-text span {
  background-image: linear-gradient(var(--color-text), var(--color-text));
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  background-size: 0 0.1rem;
  background-position: bottom right;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-out;
}

/* ---------- head ---------- */
.c-head-primary {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .c-head-primary {
    gap: 3.2rem;
  }
}

.c-head-primary__en {
  display: block;
  font-family: var(--family-english);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  padding-bottom: 2.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-head-primary__en {
    font-size: 1.6rem;
    line-height: 1.25;
    padding-bottom: 2rem;
  }
}
.c-head-primary__en::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-head-primary__ja {
  font-size: 3.4rem;
  line-height: 1.4411764706;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-head-primary__ja {
    font-size: 2.6rem;
    line-height: 1;
  }
}

.c-head-secondary {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: 700;
}

.c-head-tertiary {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- icon list ----------*/
.c-icon-list {
  width: 100%;
  max-width: 86rem;
  margin-inline: auto;
  border-radius: var(--radius-small);
  background-color: var(--color-white);
  padding: 2.4rem 6rem;
}
@media screen and (max-width: 767px) {
  .c-icon-list {
    padding: 2rem;
  }
}

.c-icon-list__item {
  padding-block: 1.6rem;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-left: 3.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-icon-list__item {
    padding-block: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 3.2rem;
  }
}
.c-icon-list__item::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_check_primary.svg) center/contain no-repeat;
  position: absolute;
  top: 1.8rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-icon-list__item::before {
    width: 2rem;
    top: 1.6rem;
  }
}
.c-icon-list__item + .c-icon-list__item {
  border-top: 0.1rem solid var(--color-border);
}

/* ---------- img ----------*/
.c-img {
  width: min(100rem, 100%);
  margin-inline: auto;
}
.c-img img {
  width: 100%;
}

/* ---------- low fv ----------*/
.c-low-fv {
  position: relative;
  z-index: 1;
  min-height: 26.5rem;
  margin-block: 5.4rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-low-fv {
    margin-block: 4rem 8rem;
    min-height: auto;
  }
}

.c-low-fv__object {
  display: block;
  width: 53.5rem;
  aspect-ratio: 535/346;
  position: absolute;
  top: -12.6rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-low-fv__object {
    top: -8.2rem;
    width: 16rem;
  }
}
.c-low-fv__object svg .st2 {
  fill: url(#fv-gradation);
}
.c-low-fv__object svg .st3 {
  clip-path: url(#clippath);
}
.c-low-fv__object svg #fv-mask path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 76;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000px;
  stroke-dashoffset: 1000px;
  animation: line 1.2s forwards;
}
@keyframes line {
  0% {
    stroke-dashoffset: 1000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.c-low-fv__object svg #fv-object {
  mask: url(#fv-mask-wrapper);
}

.c-low-fv__head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-low-fv__head {
    gap: 0.4rem;
  }
}

.c-low-fv__head-en {
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: var(--family-english);
}
@media screen and (max-width: 767px) {
  .c-low-fv__head-en {
    font-size: 1.2rem;
  }
}

.c-low-fv__head-ja {
  font-size: 4.8rem;
  line-height: 1.4583333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-low-fv__head-ja {
    font-size: 3.2rem;
    line-height: 1.375;
  }
}

.c-low-fv__text {
  max-width: 54rem;
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 2.125;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-low-fv__text {
    max-width: none;
    margin-top: 1.6rem;
  }
}

.c-news {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-news {
    order: 1;
  }
}

.c-news__item {
  border-bottom: 0.1rem solid var(--color-border);
  position: relative;
}
.c-news__item + .c-news__item .c-news__item-link {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-news__item + .c-news__item .c-news__item-link {
    padding-top: 1.8rem;
  }
}

.c-news__item-link {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-news__item-link {
    padding-bottom: 1.8rem;
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
}
.c-news__item-link::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-black);
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .c-news__item-link:hover::after {
    transform: scaleX(1);
  }
  .c-news__item-link:hover .c-news__item-cap,
  .c-news__item-link:hover .c-news__item-title {
    transform: translateX(1rem);
  }
}
.c-news__item-link:not(:hover)::after {
  transform-origin: center right;
}

.c-news__item-cap {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-news__item-cap {
    gap: 0.4rem;
  }
}

.c-news__item-date {
  min-width: 8rem;
  font-family: var(--family-english);
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-gray-2);
}

.c-news__cat {
  min-width: 10.7rem;
}

.c-news__item-title {
  transition: transform 0.4s ease;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-news__item-title {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    letter-spacing: 0.05em;
  }
}

.c-pagination {
  --_pagination-text: var(--color-gray-2);
  --_pagination-text-hover: var(--color-white);
  --_pagination-bg-hover: var(--color-primary);
  --_pagination-active-bg: var(--color-primary);
  --_pagination-active-text: var(--color-white,);
  --_pagination-border: var(--color-border);
  --_pagination-border-hover: var(--color-primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 0.4rem;
  }
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 4rem;
  aspect-ratio: 1;
  padding: 0 1.2rem;
  border: 0.1rem solid var(--_pagination-border);
  color: var(--_pagination-text);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-family: var(--family-english);
  border-radius: var(--radius-circle);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    min-width: 3.2rem;
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
  .c-pagination__item:hover:not([data-state=current])::before {
    background: currentColor;
  }
}

.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
}

.c-pagination__item[data-state=dots] {
  width: auto;
  min-width: auto;
  padding-inline: 0.8rem;
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=dots] {
    padding-inline: 0.2rem;
  }
}
.c-pagination__item[data-state=dots]:hover {
  color: var(--_pagination-text);
  border-color: transparent;
  background-color: transparent;
}

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  min-width: 5.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=prev],
  .c-pagination__item[data-state=next] {
    min-width: 4.8rem;
  }
}
.c-pagination__item[data-state=prev]::before,
.c-pagination__item[data-state=next]::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  aspect-ratio: 9/15;
  background: var(--color-primary);
  mask-image: url(../img/common/icon_arrow_splider.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.c-pagination__item[data-state=prev] {
  margin-right: 1.8rem;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=prev] {
    margin-right: 0.4rem;
  }
}

.c-pagination__item[data-state=next] {
  margin-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=next] {
    margin-left: 0.4rem;
  }
}

.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    color: var(--_pagination-text);
  }
}

/* ---------- recommend ----------*/
.c-recommend {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-recommend__link {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  border-radius: 1.2rem;
  background-color: var(--color-white);
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .c-recommend__link {
    padding: 1.6rem;
    gap: 2rem;
  }
}

.c-recommend__img {
  width: 100%;
  max-width: 22rem;
}
@media screen and (max-width: 767px) {
  .c-recommend__img {
    max-width: 12rem;
  }
}
.c-recommend__img img {
  aspect-ratio: 220/131;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-recommend__img img {
    border-radius: 0.4rem;
  }
}

.c-recommend__content {
  flex: 1;
}

.c-recommend__cap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
}

.c-recommend__title {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  font-weight: 700;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-recommend__title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.c-recommend__date {
  font-family: var(--family-english);
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-gray-2);
}
@media screen and (max-width: 767px) {
  .c-recommend__date {
    font-size: 1.2rem;
  }
}

/* ---------- search form ----------*/
.c-search-form__form {
  width: 100%;
  max-width: 45rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-search-form__form {
    max-width: 100%;
  }
}

.c-search-form__input {
  display: block;
  padding: 1rem 4rem 1rem 2rem;
  font-size: 1.6rem;
  line-height: 1.125;
  width: 100%;
  background-color: var(--color-bg);
  border: 0.1rem solid var(--color-border);
  border-radius: 0.6rem;
}

.c-search-form__btn {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}

/* ---------- service cta ----------*/
.c-service-cta {
  padding-block: 7.8rem 6rem;
  background: url(../img/common/service_bg.png) no-repeat center/cover;
  border-radius: var(--radius-max);
}
@media screen and (max-width: 767px) {
  .c-service-cta {
    padding: 3.2rem 4rem;
    border-radius: 4rem;
  }
}

.c-service-cta__en {
  width: 100%;
  max-width: 59.1rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-service-cta__en {
    max-width: 24rem;
  }
}

/* ---------- service intro ----------*/
.c-service-intro__container {
  padding-block: 5.5rem 6.2rem;
}
@media screen and (max-width: 767px) {
  .c-service-intro__container {
    padding-block: 4rem;
  }
}

.c-service-intro__title a {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-service-intro__title a {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.c-service-intro__title a::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_dropdown.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: -0.9rem;
  transform: translate(100%, -50%) rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .c-service-intro__title a::after {
    width: 1.4rem;
  }
}

.c-service-intro__list {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-service-intro__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-service-intro__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-service-intro__sub {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.c-service-intro__detail {
  margin-top: 1.4rem;
  border-top: 0.1rem solid var(--color-border);
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-service-intro__detail {
    margin-top: 0.8rem;
    padding-top: 1.2rem;
  }
}

.c-service-intro__link a {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-service-intro__link a {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.c-service-intro__link a::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-service-intro__link a::after {
  content: "";
  display: inline-block;
  width: calc(100% - 1.2rem);
  height: 0.1rem;
  background-color: currentColor;
  position: absolute;
  bottom: -0.1rem;
  right: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration);
}
@media (hover: hover) {
  .c-service-intro__link a:hover {
    opacity: 1;
  }
  .c-service-intro__link a:hover::after {
    transform: scaleX(1);
  }
}
.c-service-intro__link a:not(:hover)::after {
  transform-origin: center right;
}
.c-service-intro__link.is-current a {
  color: var(--color-primary);
}
@media (hover: hover) {
  .c-service-intro__link.is-current a:hover::after {
    transform: scaleX(0);
  }
}
.c-service-intro__link + .c-service-intro__link {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-service-intro__link + .c-service-intro__link {
    margin-top: 0.8rem;
  }
}

/* ---------- service summary ----------*/
.c-service-summary + .c-service-summary {
  margin-top: 11.2rem;
}
@media screen and (max-width: 767px) {
  .c-service-summary + .c-service-summary {
    margin-top: 6.4rem;
  }
}

.c-service-summary__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.c-service-summary__title b {
  font-family: var(--family-english);
  font-size: 6.2rem;
  line-height: 1.2258064516;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-service-summary__title b {
    font-size: 4rem;
    line-height: 1.25;
  }
}
.c-service-summary__title span {
  margin-top: 2.4rem;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-service-summary__title span {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

.c-service-summary__body {
  margin-top: 2.5rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-small);
  padding: 5rem 5rem 6rem;
}
@media screen and (max-width: 1023px) {
  .c-service-summary__body {
    margin-top: 2rem;
    padding: 2rem;
  }
}

.c-service-summary__wrap {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-service-summary__wrap {
    flex-direction: column;
    align-items: center;
  }
}

.c-service-summary__img {
  width: 100%;
  max-width: 38rem;
  display: flex;
}
.c-service-summary__img img {
  border-radius: var(--radius-xsmall);
  aspect-ratio: 380/300;
}
@media screen and (max-width: 1023px) {
  .c-service-summary__img img {
    aspect-ratio: auto;
  }
}

.c-service-summary__content {
  width: 100%;
  max-width: 68rem;
}
@media screen and (max-width: 1023px) {
  .c-service-summary__content {
    max-width: none;
  }
}

.c-service-summary__recommend {
  margin-top: 3rem;
  background-color: var(--color-bg);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  padding: 2.4rem 3.6rem 2.1rem;
}
@media screen and (max-width: 767px) {
  .c-service-summary__recommend {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
  }
}

.c-service-summary__recommend-head {
  padding-right: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-service-summary__recommend-head {
    padding-right: 0;
    padding-bottom: 0.8rem;
  }
}

.c-service-summary__recommend-desc {
  padding-left: 3rem;
  border-left: 0.1rem solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-service-summary__recommend-desc {
    padding-top: 0.8rem;
    padding-left: 0;
    border-left: none;
    border-top: 0.1rem solid var(--color-border);
  }
}

.c-service-summary__recommend-list li {
  padding-left: 1rem;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.c-service-summary__recommend-list li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  aspect-ratio: 1;
  border-radius: var(--radius-circle);
  background-color: var(--color-primary);
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.c-service-summary__recommend-list li + li {
  margin-top: 0.4rem;
}

.c-service-summary__btn {
  margin-top: 4.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-service-summary__btn {
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-service-summary__btn-link {
  display: block;
  background-color: var(--color-white);
  border-radius: 1.2rem;
  padding: 3rem 3.2rem 3.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-service-summary__btn-link {
    padding: 2rem;
    border-radius: var(0.6rem);
  }
}
.c-service-summary__btn-link::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_dropdown.svg) center/contain no-repeat;
  rotate: -90deg;
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  transition: transform var(--duration) ease;
}
@media (hover: hover) {
  .c-service-summary__btn-link:hover::after {
    transform: translateY(0.4rem);
  }
}

.c-service-summary__btn-tilte {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-service-summary__btn-tilte {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.c-service-summary__btn-text {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.c-sort {
  background-color: var(--color-white);
  border-radius: var(--radius-small);
  padding: 4.6rem 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-sort {
    padding: 3.2rem 2rem;
  }
}

.c-sort__col {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 1023px) {
  .c-sort__col {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sort__col {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-sort__col:has(.c-sort__content-search-form) {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-sort__col:has(.c-sort__content-search-form) {
    align-items: stretch;
  }
}
.c-sort__col + .c-sort__col {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-sort__col + .c-sort__col {
    margin-top: 3.2rem;
  }
}

.c-sort__head {
  width: 100%;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .c-sort__head {
    max-width: none;
  }
}

.c-sort__title {
  font-size: 2.1rem;
  line-height: 1.1904761905;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-family: var(--family-english);
}

.c-sort__content {
  flex: 1;
}

.c-sort__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.8rem;
}

.c-sort__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* ---------- splide ----------*/
.c-splide__menu {
  width: 100%;
  max-width: 89rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-splide__menu {
    padding-right: 0;
    flex-direction: row-reverse;
    gap: 2.7rem;
  }
}

.c-splide__progress {
  flex: 1;
  background-color: var(--color-border);
}

.c-splide__progress-bar {
  background: var(--color-primary);
  height: 0.1rem;
  transition: width 400ms ease;
  width: 0;
}

.c-splide__arrows {
  position: static;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.c-splide__arrow {
  width: 5.2rem;
  height: 5.2rem;
  transform: translate(0);
  background-color: transparent;
  border: 0.1rem solid #c5c7c9;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
@media screen and (max-width: 767px) {
  .c-splide__arrow {
    width: 5rem;
    height: 5rem;
  }
}
.c-splide__arrow::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  aspect-ratio: 9/15;
  background: var(--color-primary);
  mask-image: url(../img/common/icon_arrow_splider.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-splide__arrow.prev {
  transform: scaleX(-1);
}

/* ---------- step ----------*/
.c-step__item {
  display: flex;
  align-items: center;
  gap: 5.2rem;
  padding-bottom: 3.6rem;
  border-bottom: 0.1rem solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-step__item {
    flex-direction: column;
    gap: 1.8rem;
    padding-bottom: 2.5rem;
  }
}
.c-step__item + .c-step__item {
  padding-block: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-step__item + .c-step__item {
    padding-block: 2rem 2.5rem;
  }
}

.c-step__item-head {
  width: 100%;
  max-width: 37.7rem;
  display: flex;
  align-items: center;
}
.c-step__item-head::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 4.4rem;
  background-color: var(--color-primary);
}

.c-step__item-num {
  font-size: 4rem;
  line-height: 1.225;
  font-weight: 400;
  font-family: var(--family-english);
  margin-left: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-step__item-num {
    margin-left: 1.9rem;
  }
}

.c-step__item-title {
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-step__item-title {
    margin-left: 2.3rem;
  }
}

.c-step__item-content {
  flex: 1;
}

/* ---------- strength ----------*/
.c-strength__inner {
  overflow: hidden;
  position: relative;
}

.c-strength__en {
  font-size: 15rem;
  line-height: 1.22;
  color: #e1e5eb;
  bottom: -5.2rem;
}
@media screen and (max-width: 767px) {
  .c-strength__en {
    font-size: 7.2rem;
    line-height: 1.2222222222;
    bottom: -1.6rem;
  }
}

.c-strength__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-strength__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }
}

.c-strength__item {
  background-color: var(--color-white);
  border-radius: var(--radius-small);
  padding: 2rem 1.6rem 4.8rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-strength__item {
    padding: 2rem 1.6rem 3.2rem;
  }
}

.c-strength__item-num {
  display: inline-block;
  font-size: 5rem;
  line-height: 1.22;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: var(--family-english);
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-strength__item-num {
    font-size: 4rem;
    line-height: 1.225;
  }
}

/* ---------- tag ----------*/
.c-tag {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--color-gray-2);
}
.c-tag::before {
  content: "#";
}

a.c-tag {
  transition: color var(--duration) ease;
}
@media (hover: hover) {
  a.c-tag:hover {
    color: var(--color-text);
  }
}

/* ---------- text box ----------*/
.c-text-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .c-text-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-text-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
}

.c-text-box__item {
  padding: 3rem;
  background-color: var(--color-white);
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-text-box__item {
    padding: 2rem;
  }
}

/* ---------- breadcrumbs ----------*/
.p-breadcrumbs {
  padding-block: 1rem 2rem;
  position: relative;
  z-index: 2;
}
.p-breadcrumbs .aioseo-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-breadcrumbs .aioseo-breadcrumb {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  font-weight: 500;
  color: var(--color-gray-2);
}
.p-breadcrumbs .aioseo-breadcrumb a {
  color: var(--color-gray-1);
}
.p-breadcrumbs .aioseo-breadcrumb-separator {
  font-size: 0%;
  display: inline-block;
  width: 1.5rem;
  height: 0.1rem;
  background-color: var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-breadcrumbs .aioseo-breadcrumb-separator {
    width: 1rem;
  }
}

/* ----------------------------------------------------
column
---------------------------------------------------- */
/* ---------- summary ----------*/
.p-column-summary__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3.8rem;
}
@media screen and (max-width: 1023px) {
  .p-column-summary__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-column-summary__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------------------------------------
company
---------------------------------------------------- */
/* ---------- intro ----------*/
.p-company-intro {
  position: relative;
  overflow: hidden;
}

.p-company-intro__container {
  padding-block: 10.2rem 23.6rem;
}
@media screen and (max-width: 767px) {
  .p-company-intro__container {
    padding-block: 6rem 10rem;
  }
}

.p-company-intro__en {
  font-size: 19rem;
  line-height: 1.2210526316;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-white);
  bottom: -5rem;
}
@media screen and (max-width: 767px) {
  .p-company-intro__en {
    font-size: 7.2rem;
    line-height: 1.2222222222;
    bottom: -1.8rem;
  }
}

/* ---------- mvv ----------*/
.p-company-mvv__body {
  background-color: var(--color-white);
  border-radius: var(--radius-small);
  padding: 7.2rem 7rem 7.4rem;
}
@media screen and (max-width: 767px) {
  .p-company-mvv__body {
    padding: 3.2rem 2rem;
  }
}

.p-company-mvv__col {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-company-mvv__col {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-company-mvv__col + .p-company-mvv__col {
  margin-top: 7.2rem;
  padding-top: 6.4rem;
  border-top: 0.1rem solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-company-mvv__col + .p-company-mvv__col {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
  }
}

.p-company-mvv__dt {
  width: 100%;
  max-width: 38rem;
  font-size: 6.2rem;
  line-height: 1.2258064516;
  font-weight: 600;
  font-family: var(--family-english);
}
@media screen and (max-width: 767px) {
  .p-company-mvv__dt {
    max-width: none;
    font-size: 4rem;
    line-height: 1.4;
  }
}

.p-company-mvv__dd {
  width: 100%;
  max-width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-company-mvv__dd {
    max-width: none;
  }
}

/* ---------- overview ----------*/
.p-company-overview__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 940/480;
}

/* ---------- footer ---------- */
.p-footer {
  background-color: var(--color-text);
  position: relative;
  z-index: 2;
}

.p-footer__container {
  padding-block: 6.8rem 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    padding-block: 4.5rem 5.6rem;
  }
}

.p-footer__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}

.p-footer__info {
  width: 100%;
  max-width: 33rem;
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-footer__info {
    text-align: center;
  }
}

.p-footer__company {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.p-footer__text {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0.04em;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 13.3rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__logo {
    max-width: 15.2rem;
    margin-inline: auto;
  }
}
.p-footer__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-footer__nav {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    width: 100%;
    padding-top: 3rem;
    border-top: 0.1rem solid var(--color-gray-1);
    flex-direction: column;
    gap: 4rem;
  }
}

.p-footer__nav-end {
  display: flex;
}
.p-footer__nav-end .p-footer__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  align-content: start;
  gap: 2rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-end .p-footer__list {
    grid-auto-flow: row;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 2.4rem 2rem;
  }
}

.p-footer__item {
  color: var(--color-white);
}
.p-footer__item > a {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__item > a {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.p-footer__child {
  margin-top: 2rem;
  display: flex;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__child {
    flex-direction: column;
    gap: 0.6rem;
  }
}
.p-footer__child + .p-footer__child {
  margin-top: 1.2rem;
}

.p-footer__child-title {
  margin-top: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .p-footer__child-title {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__child-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 2rem;
  }
}

.p-footer__child-item a {
  color: var(--color-border);
  font-size: 1.2rem;
  line-height: 2;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footer__child-item a {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}

.p-footer__copyright {
  margin-top: 1.2rem;
  color: var(--color-gray-2);
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 1023px) {
  .p-footer__copyright {
    margin-top: 7.8rem;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}

/* ---------- header ---------- */
.p-header {
  border: 0.1rem solid transparent;
  display: flex;
  align-items: center;
  transition: border-color var(--duration) ease, background-color var(--duration) ease, height var(--duration) ease;
}
@media screen and (min-width: 1024px) {
  .p-header.is-active {
    --header-height: 8rem;
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (max-width: 1023px) {
  .p-header {
    background-color: var(--color-bg);
  }
}

.p-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 3rem;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding: 1.4rem 1.5rem;
    align-items: center;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 13.3rem;
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__logo {
    max-width: 10.1rem;
  }
}
.p-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__nav {
  position: relative;
  display: flex;
  flex: 1;
  gap: 4rem;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  gap: 3.2rem;
  justify-content: flex-end;
}

.p-header__nav-item {
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}
.p-header__nav-item > a, .p-header__nav-item > p {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
}
.p-header__nav-item:has(.p-header__nav-child) {
  position: relative;
  gap: 1rem;
}
.p-header__nav-item:has(.p-header__nav-child)::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_dropdown.svg) center/contain no-repeat;
  transition: rotate var(--duration);
}
.p-header__nav-item:has(.p-header__nav-child):hover::after {
  rotate: 180deg;
}
.p-header__nav-item:has(.p-header__nav-child):hover .p-header__nav-child {
  visibility: visible;
  opacity: 1;
}

.p-header__nav-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: max-content;
  padding: 1rem;
  visibility: hidden;
  background-color: var(--color-white);
  opacity: 0;
  transition: opacity var(--duration) ease, visibility var(--duration) ease;
  transform: translateY(100%);
}

.p-header__nav-child-item a {
  position: relative;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
  color: var(--color-text);
}
.p-header__nav-child-item a::after {
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 1;
  content: "";
  border-top: 0.2rem solid currentcolor;
  border-right: 0.2rem solid currentcolor;
  transition: opacity var(--duration);
  rotate: 45deg;
}
@media (hover: hover) {
  .p-header__nav-child-item a:hover {
    opacity: 0.7;
  }
}

.p-header__nav-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.p-header__nav-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: 16.4rem;
  padding-inline: 2.2rem 1.2rem;
  color: var(--color-white);
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  border-radius: var(--radius-max);
  transition: background-color var(--duration) ease, border-color var(--duration) ease, color var(--duration) ease;
}
.p-header__nav-btn a span {
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-circle);
  position: relative;
  transition: background-color var(--duration) ease;
}
.p-header__nav-btn a span::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 5/7;
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  transition: background var(--duration) ease;
}
.p-header__nav-btn a[data-color=gray] {
  background-color: var(--color-gray-1);
}
.p-header__nav-btn a[data-color=gray] span::before {
  background: var(--color-text);
}
@media (hover: hover) {
  .p-header__nav-btn a[data-color=gray]:hover {
    opacity: 1;
    background-color: var(--color-primary);
  }
  .p-header__nav-btn a[data-color=gray]:hover span::before {
    background: var(--color-primary);
  }
}
.p-header__nav-btn a[data-color=primary] {
  background-color: var(--color-primary);
  border: 0.1rem solid var(--color-primary);
}
.p-header__nav-btn a[data-color=primary] span {
  transition: outline-color var(--duration) ease;
}
.p-header__nav-btn a[data-color=primary] span::before {
  background: var(--color-primary);
}
@media (hover: hover) {
  .p-header__nav-btn a[data-color=primary]:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .p-header__nav-btn a[data-color=primary]:hover span {
    background-color: var(--color-primary);
  }
  .p-header__nav-btn a[data-color=primary]:hover span::before {
    background: var(--color-white);
  }
}

/* --- hamburger --- */
.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: 6.4rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  border-radius: var(--radius-max);
  cursor: pointer;
  background-color: var(--color-primary);
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 2.2rem;
  height: 0.2rem;
  background-color: var(--color-white);
  border-radius: var(--radius-max);
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67);
  translate: -50% 0;
}
.p-header__hamburger span:nth-of-type(1) {
  top: -0.2rem;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 0.2rem;
}
.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0.1rem;
  rotate: 30deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  top: -0.1rem;
  rotate: -30deg;
}

/* --- drawer --- */
.p-header__drawer {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: none;
  width: 100%;
  height: 100dvh;
  padding-bottom: 11rem;
  margin-top: calc(var(--header-height) - 0.1rem);
  overflow-y: scroll;
  background-color: var(--color-bg);
  scrollbar-width: none;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-white);
}

.p-header__drawer-item > a,
.p-header__drawer-accordion-title {
  display: block;
  padding: 2rem 3.2rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 500;
  cursor: pointer;
}

.p-header__drawer-accordion-title {
  width: 100%;
  text-align: left;
}

.p-header__drawer-accordion-title {
  position: relative;
}
.p-header__drawer-accordion-title::before, .p-header__drawer-accordion-title::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1.2rem;
  height: 0.2rem;
  content: "";
  background: currentcolor;
  transition: transform var(--duration), rotate var(--duration);
}
.p-header__drawer-accordion-title::before {
  translate: 0 -50%;
}
.p-header__drawer-accordion-title::after {
  rotate: 90deg;
  translate: 0 -50%;
}

.p-header__drawer-accordion-title.is-open::after {
  rotate: revert;
  translate: 0 -50%;
}

.p-header__drawer-accordion-list {
  display: none;
  padding-bottom: 1rem;
}

.p-header__drawer-accordion-item a {
  display: block;
  padding: 1rem 3.2rem;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}

.p-header__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.p-header__drawer-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: 16.4rem;
  padding-inline: 2.2rem 1.2rem;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-primary);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  border-radius: var(--radius-max);
}
.p-header__drawer-btn a span {
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-circle);
  position: relative;
}
.p-header__drawer-btn a span::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  aspect-ratio: 4/7;
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
}
.p-header__drawer-btn a[data-color=gray] {
  background-color: var(--color-gray-1);
}
.p-header__drawer-btn a[data-color=gray] span::before {
  background: var(--color-text);
}
.p-header__drawer-btn a[data-color=primary] span::before {
  background: var(--color-primary);
}

/* ----------------------------------------------------
post
---------------------------------------------------- */
/* ---------- single ----------*/
.p-post-single__cap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
}

.p-post-single__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.8rem;
}

.p-post-single__date {
  font-family: var(--family-english);
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-gray-2);
}

.p-post-single__title {
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid var(--color-border);
}

.p-post-single__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}

.p-post-single__tag-item a {
  display: block;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: var(--color-gray-2);
}
.p-post-single__tag-item a::before {
  content: "#";
}

.p-post-single__thumbnail img {
  display: block;
  border-radius: var(--radius-small);
  margin-inline: auto;
}

.p-post-single__body {
  border-bottom: 0.1rem solid var(--color-border);
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-post-single__body {
    padding-bottom: 4rem;
  }
}

.p-post-single__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-post-single__menu {
    gap: 0.8rem;
  }
}

.p-post-single__btn {
  width: 100%;
  max-width: 24rem;
}

.p-post-single__prev,
.p-post-single__next {
  min-width: 10rem;
}
.p-post-single__prev a,
.p-post-single__next a {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-post-single__prev a,
  .p-post-single__next a {
    gap: 0.6rem;
  }
}

.p-post-single__prev a::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_dropdown.svg) center/contain no-repeat;
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .p-post-single__prev a::before {
    width: 1.4rem;
  }
}

.p-post-single__next {
  text-align: right;
}
.p-post-single__next a::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_dropdown.svg) center/contain no-repeat;
  rotate: -90deg;
}
@media screen and (max-width: 767px) {
  .p-post-single__next a::after {
    width: 1.4rem;
  }
}

/* ----------------------------------------------------
reason
---------------------------------------------------- */
.p-reason-intro__point {
  background: linear-gradient(254deg, var(--color-bg-gradation));
  border-radius: var(--radius-small);
  position: relative;
  z-index: 2;
  padding: 1.8rem 5rem 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point {
    padding: 4.4rem 2rem 4rem;
  }
}

.p-reason-intro__point-head b {
  font-size: 6.4rem;
  line-height: 1.4375;
  letter-spacing: -0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-head b {
    font-size: 4.2rem;
    line-height: 1.1904761905;
    letter-spacing: 0.02em;
  }
}

.p-reason-intro__point-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-reason-intro__point-card {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-card {
    gap: 1.5rem;
  }
}

.p-reason-intro__point-item-link {
  display: block;
  background-color: var(--color-white);
  border-radius: 1.2rem;
  position: relative;
  z-index: 1;
  padding: 1.2rem 2rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-item-link {
    padding: 2rem 1.6rem 1.6rem;
  }
}
.p-reason-intro__point-item-link::before {
  content: "";
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_anchor.svg) center/contain no-repeat;
  position: absolute;
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-item-link::before {
    width: 1.6rem;
    bottom: 0.4rem;
  }
}

.p-reason-intro__point-item-num {
  font-size: 4rem;
  line-height: 1.225;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-tertiary);
  font-family: var(--family-english);
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-item-num {
    font-size: 3.8rem;
    line-height: 1.2368421053;
    top: 0.2rem;
    right: 0.8rem;
  }
}

.p-reason-intro__point-item-head {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-item-head {
    gap: 0.8rem;
  }
}

.p-reason-intro__point-item__icon {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .p-reason-intro__point-item__icon {
    width: 6.4rem;
  }
}

.p-reason-intro__point-item-title {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.p-reason-intro__point-item-title span {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0em;
}
.p-reason-intro__point-item-title b {
  font-size: 2rem;
  line-height: 1.45;
}

/* ---------- detail ----------*/
.p-reason-detail__wrap {
  --item-width: 172;
  --item-gap: 34;
}
@media screen and (max-width: 767px) {
  .p-reason-detail__wrap {
    --item-width: 120;
    --item-gap: 16;
  }
}

.p-reason-detail__col + .p-reason-detail__col {
  margin-top: 9.2rem;
  padding-top: 7.2rem;
  border-top: 0.1rem solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-reason-detail__col + .p-reason-detail__col {
    margin-top: 4rem;
    padding-top: 3.2rem;
  }
}

.p-reason-detail__head {
  display: flex;
  gap: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-reason-detail__head {
    flex-direction: column;
    gap: 0;
  }
}

.p-reason-detail__num {
  min-width: max-content;
  font-size: 10.4rem;
  line-height: 1.2211538462;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-primary);
  font-family: var(--family-english);
}
@media screen and (max-width: 767px) {
  .p-reason-detail__num {
    font-size: 5.4rem;
    line-height: 1.1111111111;
  }
}

@media screen and (max-width: 1023px) {
  .p-reason-detail__scroll {
    overflow-x: scroll;
  }
}

.p-reason-detail__step {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
@media screen and (max-width: 1023px) {
  .p-reason-detail__step {
    min-width: 120rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason-detail__step {
    min-width: 80rem;
    gap: 1.2rem;
  }
}

.p-reason-detail__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: calc(var(--item-gap) * 0.1rem);
}
@media screen and (max-width: 1023px) {
  .p-reason-detail__list {
    min-width: inherit;
  }
}

.p-reason-detail__item-body {
  width: calc(var(--item-width) * 0.1rem);
  aspect-ratio: 1;
  border-radius: 1.2rem;
  background-color: var(--color-white);
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-reason-detail__item-body {
    padding: 1.2rem 0.4rem;
    gap: 0.8rem;
  }
}

.p-reason-detail__item-img {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .p-reason-detail__item-img {
    width: 6.4rem;
  }
}

.p-reason-detail__item-title {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-reason-detail__item-title {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-reason-detail__item-text {
  margin-top: 2.2rem;
}

.p-reason-detail__phase {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(var(--item-gap) * 0.1rem);
}
@media screen and (max-width: 1023px) {
  .p-reason-detail__phase {
    min-width: inherit;
  }
}

.p-reason-detail__phase-item {
  width: calc(var(--item-width) * 0.1rem);
  position: relative;
}
.p-reason-detail__phase-item.p-reason-detail__phase-item--last {
  width: auto;
  flex: 1;
}
.p-reason-detail__phase-item.p-reason-detail__phase-item--last .p-reason-detail__phase-arrow {
  width: 105%;
  position: absolute;
  left: auto;
  right: 0;
  transform: translateY(-50%);
}

.p-reason-detail__phase-text {
  width: calc(156 / var(--item-width) * 100%);
  margin-inline: auto;
  display: block;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-gray-1);
  border-radius: var(--radius-max);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reason-detail__phase-text {
    width: calc(100 / var(--item-width) * 100%);
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-reason-detail__phase-arrow {
  display: block;
  width: calc(225 / var(--item-width) * 100%);
  height: 0.2rem;
  background-image: linear-gradient(to right, var(--color-gray-2) 0.3rem, transparent 0.3rem);
  background-size: 0.8rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-reason-detail__phase-arrow {
    width: calc(160 / var(--item-width) * 100%);
  }
}
.p-reason-detail__phase-arrow::after {
  content: "";
  display: inline-block;
  width: 1rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_triangle.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: -0.1rem;
  transform: translateY(-50%);
}

/* ----------------------------------------------------
top
---------------------------------------------------- */
/* ---------- bg ----------*/
.p-top-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.p-top-bg__object {
  width: 136.6rem;
  width: min(136.6rem, 94.8611111111vw);
  position: fixed;
  top: 10rem;
  right: -13.6rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-bg__object {
    width: min(68rem, 118.4615384615vw);
    top: 25.2rem;
    right: auto;
    left: 50%;
    transform: translateX(-40%);
  }
}
.p-top-bg__object svg .st0 {
  fill: url(#object-gradation-2);
}
.p-top-bg__object svg .st2 {
  fill: url(#object-gradation);
}
.p-top-bg__object svg .st1 {
  fill: #ec3541;
}
.p-top-bg__object svg #object-gradation stop:nth-child(1) {
  stop-color: #d6000f;
}
.p-top-bg__object svg #object-gradation-2 stop:nth-child(3) {
  stop-color: #d6000f;
}
.p-top-bg__object svg .st3 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 82px;
}
.p-top-bg__object svg #top-object-mask path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 84;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 5000px;
  stroke-dashoffset: 5000px;
}
.p-top-bg__object svg #top-object {
  mask: url(#top-object-mask-wrapper);
}

/* ---------- mv ----------*/
.p-top-mv {
  max-width: 1320px;
  margin-inline: auto;
}

.p-top-mv__container {
  padding: 20rem 2rem 7.7rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__container {
    padding: 3.2rem 2rem 10.8rem;
  }
}

.p-top-mv__content {
  max-width: 63.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__content {
    max-width: 31.2rem;
    max-width: min(48rem, 80vw);
  }
}

.p-top-mv__sub {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.04em;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-mv__sub {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0.02em;
  }
}

.p-top-mv__title {
  margin-top: 4.6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    margin-top: 1.8rem;
  }
}
.p-top-mv__title img {
  width: 100%;
}

.p-top-mv__btn {
  width: 100%;
  max-width: 20rem;
  margin-top: 7rem;
  display: flex;
  border-radius: var(--radius-max);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-mv__btn {
    display: none;
  }
}
.p-top-mv__btn a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  height: 5.2rem;
  padding-inline: 3rem 2rem;
  transition: background-color var(--duration) ease, color var(--duration) ease;
}
.p-top-mv__btn a span {
  display: inline-block;
  width: 1.6rem;
  min-width: 1.6rem;
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
  position: relative;
  transition: background-color var(--duration) ease;
}
.p-top-mv__btn a span::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 5/7;
  background: var(--color-white);
  mask-image: url(../img/common/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background var(--duration) ease;
}
@media (hover: hover) {
  .p-top-mv__btn a:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .p-top-mv__btn a:hover span {
    background-color: var(--color-white);
  }
  .p-top-mv__btn a:hover span::before {
    background: var(--color-primary);
  }
}

.p-top-mv__text {
  margin-top: 3.2rem;
  max-width: max-content;
  margin-inline: auto 0;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top-mv__text {
    margin-top: 28rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    letter-spacing: 0.05em;
  }
}

/* ---------- about ----------*/
.p-top-about {
  position: relative;
}

.p-top-about__en {
  text-align: center;
  font-size: 19rem;
  line-height: 1.2210526316;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-white);
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__en {
    top: 0;
    font-size: 7.2rem;
    line-height: 1.2222222222;
  }
}

.p-top-about__container {
  padding-block: 29.4rem 16.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__container {
    padding-block: 14rem 6.8rem;
  }
}

/* ---------- main ----------*/
.p-top-main {
  position: relative;
  z-index: 2;
}

/* ---------- support ----------*/
.p-top-support__container {
  padding-block: 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-support__container {
    padding-block: 6rem;
  }
}

.p-top-support__wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-support__wrap {
    flex-direction: column;
    gap: 3.4rem;
  }
}

.p-top-support__img {
  flex: 1;
}
.p-top-support__img img {
  border-radius: var(--radius-small);
}

.p-top-support__content {
  flex: 1;
}

.p-top-support__desc {
  width: 100%;
  max-width: 50rem;
  margin-inline: auto 0;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-support__desc {
    padding-left: 0;
  }
}

.p-top-support__text {
  letter-spacing: 0.08em;
}

/* ---------- issue ----------*/
.p-top-issue {
  position: relative;
  z-index: 2;
}

.p-top-issue__container {
  max-width: 1400px;
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-issue__container {
    padding-block: 4rem 5rem;
  }
}

.p-top-issue__col {
  min-height: 54.6rem;
  border-radius: var(--radius-small);
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-issue__col {
    min-height: 60rem;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 4rem 30rem;
  }
}

.p-top-issue__inner {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
}

.p-top-issue__trouble {
  background-color: var(--color-text);
}
.p-top-issue__trouble .p-top-issue__img {
  width: 64.9rem;
  top: -3.2rem;
  right: -4.7rem;
  rotate: 19deg;
}
@media screen and (max-width: 1023px) {
  .p-top-issue__trouble .p-top-issue__img {
    width: 40rem;
    top: 6rem;
    right: -10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-issue__trouble .p-top-issue__img {
    width: 28.8rem;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -4.9rem;
    left: 50%;
    translate: -45% 0;
  }
}

.p-top-issue__reason {
  background-color: var(--color-white);
}
.p-top-issue__reason .p-top-issue__img {
  width: 83.9rem;
  top: -20.1rem;
  right: -33.3rem;
  rotate: 16deg;
}
@media screen and (max-width: 1023px) {
  .p-top-issue__reason .p-top-issue__img {
    width: 40rem;
    top: -2rem;
    right: -20rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-issue__reason .p-top-issue__img {
    width: 43.4rem;
    top: auto;
    right: auto;
    left: 11.6rem;
    bottom: -4rem;
    rotate: 19deg;
  }
}

.p-top-issue__content {
  flex: 1;
  padding-inline: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-top-issue__content {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-issue__content {
    padding-inline: 0;
  }
}

.p-top-issue__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.p-top-issue__item {
  display: flex;
  gap: 1rem;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-issue__item {
    gap: 0.8rem;
  }
}
.p-top-issue__item::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  min-width: 2.2rem;
  aspect-ratio: 1;
  background: var(--color-white);
  mask-image: url(../img/common/icon_check.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-issue__item::before {
    width: 2rem;
    min-width: 2rem;
    margin-top: 0.3rem;
  }
}

.p-top-issue__img {
  position: absolute;
  z-index: -1;
}

/* ---------- point ----------*/
.p-top-point {
  border-radius: var(--radius-medium);
  position: relative;
  z-index: 2;
}
.p-top-point::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(316deg, var(--color-bg-gradation));
  z-index: -1;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.p-top-point.is-active::before {
  opacity: 1;
  transform: scale(1);
}
.p-top-point.is-active .p-top-point__head {
  color: var(--color-white);
}

.p-top-point__container {
  padding-block: 5.8rem 9.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-point__container {
    padding-block: 4.4rem 7.4rem;
  }
}

.p-top-point__head {
  transition: color var(--duration) ease-out;
}
.p-top-point__head b {
  font-size: 6.4rem;
  line-height: 1.4375;
  letter-spacing: -0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-point__head b {
    font-size: 4.2rem;
    line-height: 1.1904761905;
    letter-spacing: 0.02em;
  }
}

.p-top-point__card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.9rem;
}
@media screen and (max-width: 1023px) {
  .p-top-point__card {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top-point__card {
    gap: 1.5rem;
  }
}

.p-top-point__item {
  background-color: var(--color-white);
  border-radius: var(--radius-small);
  position: relative;
  z-index: 1;
  padding: 2.4rem 3.4rem 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-point__item {
    border-radius: 1.2rem;
    padding: 1.7rem 2rem 2.4rem;
  }
}

.p-top-point__item-num {
  font-size: 6.8rem;
  line-height: 1.2205882353;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-tertiary);
  font-family: var(--family-english);
  position: absolute;
  top: 0.8rem;
  right: 2.4rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-point__item-num {
    font-size: 3.8rem;
    line-height: 1.2368421053;
    top: 0.7rem;
    right: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-point__item-head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.p-top-point__item__icon {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-point__item__icon {
    width: 8rem;
  }
}

.p-top-point__item-title {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-point__item-title {
    gap: 0.1rem;
  }
}
.p-top-point__item-title span {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-point__item-title span {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
.p-top-point__item-title b {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-point__item-title b {
    font-size: 2rem;
    line-height: 1.45;
  }
}

/* ---------- service ----------*/
.p-top-service {
  margin-top: calc(-1 * var(--radius-medium));
}

.p-top-service__container {
  padding-block: calc(12.2rem + var(--radius-medium)) 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__container {
    padding-block: calc(6rem + var(--radius-medium)) 4.7rem;
  }
}

.p-top-service__head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-top-service__head {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-top-service__title {
  width: max-content;
}

.p-top-service__text {
  max-width: 84rem;
}

.p-top-service__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-top-service__card {
    max-width: 58rem;
    grid-template-columns: repeat(1, 1fr);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__card {
    max-width: 40rem;
  }
}

.p-top-service__item-inner {
  background-color: var(--color-white);
  border-radius: var(--radius-small);
  padding: 3rem 4rem 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-inner {
    padding: 2rem 2rem 2.4rem;
  }
}

.p-top-service__item-img {
  background-color: var(--color-bg);
  border-radius: var(--radius-xsmall);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-service__item-img img {
  width: 100%;
}

.p-top-service__item-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1.1rem;
  font-size: 4.6rem;
  line-height: 1.2391304348;
  font-weight: 600;
  font-family: var(--family-english);
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title {
    font-size: 3rem;
    line-height: 1.2666666667;
    gap: 0 0.8rem;
  }
}
.p-top-service__item-title span {
  padding-top: 0.8rem;
  font-family: var(--family-sans);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: calc(nul / 1000 * 1em);
  font-weight: 700;
  color: var(--color-gray-2);
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title span {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.p-top-service__item-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-btn {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- case ----------*/
.p-top-case {
  padding-top: 14rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-case {
    padding-top: 6rem;
  }
}
.p-top-case::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 14rem;
  background-color: var(--color-bg-primary);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-case::before {
    height: 6rem;
  }
}

.p-top-case__frame {
  display: block;
  width: 65.2rem;
  aspect-ratio: 652/249;
  position: absolute;
  top: 2.2rem;
  left: -9.5rem;
  rotate: -4deg;
}
@media screen and (max-width: 1023px) {
  .p-top-case__frame {
    width: 48rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-case__frame {
    width: 27.3rem;
    top: 0.9rem;
    left: -1.6rem;
  }
}
.p-top-case__frame svg .st1 {
  fill: url(#frame-gradation);
}
.p-top-case__frame svg #frame-mask path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 71;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000px;
  stroke-dashoffset: 1000px;
}
.p-top-case__frame svg #frame-object {
  mask: url(#frame-mask-wrapper);
}

.p-top-case__container {
  padding-block: 19rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__container {
    padding-block: 9.7rem 4.2rem;
  }
}

.p-top-case__wrap {
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-top-case__wrap {
    gap: 0;
    flex-direction: column;
  }
}

.p-top-case__content {
  width: 26rem;
  min-width: 26rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top-case__content {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-top-case__desc {
    order: 0;
  }
}

.p-top-case__btn {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .p-top-case__btn {
    margin-top: 3.4rem;
    order: 2;
  }
}

.p-top-case__summary {
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-case__summary {
    margin-top: 4rem;
    order: 1;
    margin-right: 0;
  }
}

.p-top-case__track {
  padding-right: 2rem !important;
}
@media screen and (max-width: 767px) {
  .p-top-case__track {
    padding-right: 0 !important;
  }
}

.p-top-case__slide {
  max-width: 44.2rem;
}
@media screen and (max-width: 1023px) {
  .p-top-case__slide {
    max-width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-case__slide {
    max-width: 100%;
  }
}

/* ---------- column ----------*/
.p-top-column__container {
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__container {
    padding-block: 4.2rem;
  }
}

.p-top-column__wrap {
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__wrap {
    gap: 0;
    flex-direction: column;
  }
}

.p-top-column__content {
  width: 26rem;
  min-width: 26rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top-column__content {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-top-column__desc {
    order: 0;
  }
}

.p-top-column__btn {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .p-top-column__btn {
    margin-top: 3.4rem;
    order: 2;
  }
}

.p-top-column__summary {
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-column__summary {
    margin-top: 4rem;
    order: 1;
    margin-right: 0;
  }
}

.p-top-column__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.p-top-column__track {
  padding-right: 2rem !important;
}
@media screen and (max-width: 767px) {
  .p-top-column__track {
    padding-right: 0 !important;
  }
}

.p-top-column__slide {
  max-width: 44.2rem;
}
@media screen and (max-width: 1023px) {
  .p-top-column__slide {
    max-width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column__slide {
    max-width: 100%;
  }
}

.p-top-column__splide-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__splide-menu {
    flex-direction: column-reverse;
    gap: 3.4rem;
  }
}

/* ---------- news ----------*/
.p-top-news__container {
  padding-block: 6rem 17.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__container {
    padding-block: 4.2rem 9rem;
  }
}

.p-top-news__wrap {
  background-color: var(--color-white);
  border-radius: var(--radius-small);
  padding: 6.4rem 7rem 7.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__wrap {
    border-radius: 1.6rem;
    gap: 2.8rem;
    padding: 3.2rem 2rem 3rem;
  }
}

.p-top-news__head {
  width: 100%;
  max-width: 24rem;
}
@media screen and (max-width: 1023px) {
  .p-top-news__head {
    display: contents;
    max-width: none;
  }
}

.p-top-news__title {
  font-size: 5.4rem;
  line-height: 1.2222222222;
  font-weight: 600;
  font-family: var(--family-english);
}
@media screen and (max-width: 1023px) {
  .p-top-news__title {
    order: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__title {
    font-size: 3.8rem;
    line-height: 1.2368421053;
  }
}

@media screen and (max-width: 1023px) {
  .p-top-news__btn {
    order: 2;
    width: 100%;
  }
}

.p-top-news__list {
  max-width: 72rem;
}

/* ----------------------------------------------------
works
---------------------------------------------------- */
/* ---------- summary ----------*/
.p-works-summary__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3.8rem;
}
@media screen and (max-width: 1023px) {
  .p-works-summary__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-works-summary__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- animation ---------- */
.js-fv-slide {
  clip-path: inset(0 100% 0 0);
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
}

.js-fv-fadeIn,
.js-fadeIn,
.js-fadeIn-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.js-fade-st-item {
  visibility: hidden;
  opacity: 0;
}

/* ----------------- loading -----------------*/
#js-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  inset: 0;
  background: var(--color-bg);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#js-loading__logo {
  opacity: 0;
  transform: translateY(20px);
}

#js-loading__logo img {
  width: 18rem;
}
@media screen and (max-width: 767px) {
  #js-loading__logo img {
    width: 10rem;
  }
}

/* ---------- align ---------- */
.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.u-align-justify {
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .u-align-left-sp {
    text-align: left;
  }
  .u-align-center-sp {
    text-align: center;
  }
  .u-align-right-sp {
    text-align: right;
  }
  .u-align-justify-sp {
    text-align: justify;
  }
}
/* ---------- background color ---------- */
.u-bgcolor-base {
  background-color: var(--color-bg);
}

.u-bgcolor-primary {
  background-color: var(--color-bg-primary);
}

.u-bgcolor-secondary {
  background-color: var(--color-bg-secondary);
}

.u-bgcolor-tertiary {
  background-color: var(--color-bg-tertiary);
}

.u-bgcolor-white {
  background-color: var(--color-white);
}

.u-bgcolor-black {
  background-color: var(--color-black);
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-bottom-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-top-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-bottom-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-top-right: polygon(0 0, 100% 0, 100% 100%);
}

/* ---------- color ---------- */
.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-color-text {
  color: var(--color-text);
}

/* ---------- margin ---------- */
.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-my-0 {
  margin-block: 0;
}

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

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

.u-my-4 {
  margin-block: 0.4rem;
}

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

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

.u-my-8 {
  margin-block: 0.8rem;
}

.u-mt-12 {
  margin-top: 1.2rem;
}

.u-mb-12 {
  margin-bottom: 1.2rem;
}

.u-my-12 {
  margin-block: 1.2rem;
}

.u-mt-16 {
  margin-top: 1.6rem;
}

.u-mb-16 {
  margin-bottom: 1.6rem;
}

.u-my-16 {
  margin-block: 1.6rem;
}

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

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

.u-my-20 {
  margin-block: 2rem;
}

.u-mt-24 {
  margin-top: 2.4rem;
}

.u-mb-24 {
  margin-bottom: 2.4rem;
}

.u-my-24 {
  margin-block: 2.4rem;
}

.u-mt-28 {
  margin-top: 2.8rem;
}

.u-mb-28 {
  margin-bottom: 2.8rem;
}

.u-my-28 {
  margin-block: 2.8rem;
}

.u-mt-32 {
  margin-top: 3.2rem;
}

.u-mb-32 {
  margin-bottom: 3.2rem;
}

.u-my-32 {
  margin-block: 3.2rem;
}

.u-mt-36 {
  margin-top: 3.6rem;
}

.u-mb-36 {
  margin-bottom: 3.6rem;
}

.u-my-36 {
  margin-block: 3.6rem;
}

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

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

.u-my-40 {
  margin-block: 4rem;
}

.u-mt-44 {
  margin-top: 4.4rem;
}

.u-mb-44 {
  margin-bottom: 4.4rem;
}

.u-my-44 {
  margin-block: 4.4rem;
}

.u-mt-48 {
  margin-top: 4.8rem;
}

.u-mb-48 {
  margin-bottom: 4.8rem;
}

.u-my-48 {
  margin-block: 4.8rem;
}

.u-mt-52 {
  margin-top: 5.2rem;
}

.u-mb-52 {
  margin-bottom: 5.2rem;
}

.u-my-52 {
  margin-block: 5.2rem;
}

.u-mt-56 {
  margin-top: 5.6rem;
}

.u-mb-56 {
  margin-bottom: 5.6rem;
}

.u-my-56 {
  margin-block: 5.6rem;
}

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

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

.u-my-60 {
  margin-block: 6rem;
}

.u-mt-64 {
  margin-top: 6.4rem;
}

.u-mb-64 {
  margin-bottom: 6.4rem;
}

.u-my-64 {
  margin-block: 6.4rem;
}

.u-mt-68 {
  margin-top: 6.8rem;
}

.u-mb-68 {
  margin-bottom: 6.8rem;
}

.u-my-68 {
  margin-block: 6.8rem;
}

.u-mt-72 {
  margin-top: 7.2rem;
}

.u-mb-72 {
  margin-bottom: 7.2rem;
}

.u-my-72 {
  margin-block: 7.2rem;
}

.u-mt-76 {
  margin-top: 7.6rem;
}

.u-mb-76 {
  margin-bottom: 7.6rem;
}

.u-my-76 {
  margin-block: 7.6rem;
}

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

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

.u-my-80 {
  margin-block: 8rem;
}

.u-mt-84 {
  margin-top: 8.4rem;
}

.u-mb-84 {
  margin-bottom: 8.4rem;
}

.u-my-84 {
  margin-block: 8.4rem;
}

.u-mt-88 {
  margin-top: 8.8rem;
}

.u-mb-88 {
  margin-bottom: 8.8rem;
}

.u-my-88 {
  margin-block: 8.8rem;
}

.u-mt-92 {
  margin-top: 9.2rem;
}

.u-mb-92 {
  margin-bottom: 9.2rem;
}

.u-my-92 {
  margin-block: 9.2rem;
}

.u-mt-96 {
  margin-top: 9.6rem;
}

.u-mb-96 {
  margin-bottom: 9.6rem;
}

.u-my-96 {
  margin-block: 9.6rem;
}

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

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

.u-my-100 {
  margin-block: 10rem;
}

.u-mt-104 {
  margin-top: 10.4rem;
}

.u-mb-104 {
  margin-bottom: 10.4rem;
}

.u-my-104 {
  margin-block: 10.4rem;
}

.u-mt-108 {
  margin-top: 10.8rem;
}

.u-mb-108 {
  margin-bottom: 10.8rem;
}

.u-my-108 {
  margin-block: 10.8rem;
}

.u-mt-112 {
  margin-top: 11.2rem;
}

.u-mb-112 {
  margin-bottom: 11.2rem;
}

.u-my-112 {
  margin-block: 11.2rem;
}

.u-mt-116 {
  margin-top: 11.6rem;
}

.u-mb-116 {
  margin-bottom: 11.6rem;
}

.u-my-116 {
  margin-block: 11.6rem;
}

.u-mt-120 {
  margin-top: 12rem;
}

.u-mb-120 {
  margin-bottom: 12rem;
}

.u-my-120 {
  margin-block: 12rem;
}

.u-mt-124 {
  margin-top: 12.4rem;
}

.u-mb-124 {
  margin-bottom: 12.4rem;
}

.u-my-124 {
  margin-block: 12.4rem;
}

.u-mt-128 {
  margin-top: 12.8rem;
}

.u-mb-128 {
  margin-bottom: 12.8rem;
}

.u-my-128 {
  margin-block: 12.8rem;
}

.u-mt-132 {
  margin-top: 13.2rem;
}

.u-mb-132 {
  margin-bottom: 13.2rem;
}

.u-my-132 {
  margin-block: 13.2rem;
}

.u-mt-136 {
  margin-top: 13.6rem;
}

.u-mb-136 {
  margin-bottom: 13.6rem;
}

.u-my-136 {
  margin-block: 13.6rem;
}

.u-mt-140 {
  margin-top: 14rem;
}

.u-mb-140 {
  margin-bottom: 14rem;
}

.u-my-140 {
  margin-block: 14rem;
}

.u-mt-144 {
  margin-top: 14.4rem;
}

.u-mb-144 {
  margin-bottom: 14.4rem;
}

.u-my-144 {
  margin-block: 14.4rem;
}

.u-mt-148 {
  margin-top: 14.8rem;
}

.u-mb-148 {
  margin-bottom: 14.8rem;
}

.u-my-148 {
  margin-block: 14.8rem;
}

.u-mt-152 {
  margin-top: 15.2rem;
}

.u-mb-152 {
  margin-bottom: 15.2rem;
}

.u-my-152 {
  margin-block: 15.2rem;
}

.u-mt-156 {
  margin-top: 15.6rem;
}

.u-mb-156 {
  margin-bottom: 15.6rem;
}

.u-my-156 {
  margin-block: 15.6rem;
}

.u-mt-160 {
  margin-top: 16rem;
}

.u-mb-160 {
  margin-bottom: 16rem;
}

.u-my-160 {
  margin-block: 16rem;
}

.u-mx-left {
  margin-inline: 0 auto;
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-inline: auto 0;
}

@media screen and (max-width: 767px) {
  .u-mt-0-sp {
    margin-top: 0;
  }
  .u-mb-0-sp {
    margin-bottom: 0;
  }
  .u-my-0-sp {
    margin-block: 0;
  }
  .u-mt-4-sp {
    margin-top: 0.4rem;
  }
  .u-mb-4-sp {
    margin-bottom: 0.4rem;
  }
  .u-my-4-sp {
    margin-block: 0.4rem;
  }
  .u-mt-8-sp {
    margin-top: 0.8rem;
  }
  .u-mb-8-sp {
    margin-bottom: 0.8rem;
  }
  .u-my-8-sp {
    margin-block: 0.8rem;
  }
  .u-mt-12-sp {
    margin-top: 1.2rem;
  }
  .u-mb-12-sp {
    margin-bottom: 1.2rem;
  }
  .u-my-12-sp {
    margin-block: 1.2rem;
  }
  .u-mt-16-sp {
    margin-top: 1.6rem;
  }
  .u-mb-16-sp {
    margin-bottom: 1.6rem;
  }
  .u-my-16-sp {
    margin-block: 1.6rem;
  }
  .u-mt-20-sp {
    margin-top: 2rem;
  }
  .u-mb-20-sp {
    margin-bottom: 2rem;
  }
  .u-my-20-sp {
    margin-block: 2rem;
  }
  .u-mt-24-sp {
    margin-top: 2.4rem;
  }
  .u-mb-24-sp {
    margin-bottom: 2.4rem;
  }
  .u-my-24-sp {
    margin-block: 2.4rem;
  }
  .u-mt-28-sp {
    margin-top: 2.8rem;
  }
  .u-mb-28-sp {
    margin-bottom: 2.8rem;
  }
  .u-my-28-sp {
    margin-block: 2.8rem;
  }
  .u-mt-32-sp {
    margin-top: 3.2rem;
  }
  .u-mb-32-sp {
    margin-bottom: 3.2rem;
  }
  .u-my-32-sp {
    margin-block: 3.2rem;
  }
  .u-mt-36-sp {
    margin-top: 3.6rem;
  }
  .u-mb-36-sp {
    margin-bottom: 3.6rem;
  }
  .u-my-36-sp {
    margin-block: 3.6rem;
  }
  .u-mt-40-sp {
    margin-top: 4rem;
  }
  .u-mb-40-sp {
    margin-bottom: 4rem;
  }
  .u-my-40-sp {
    margin-block: 4rem;
  }
  .u-mt-44-sp {
    margin-top: 4.4rem;
  }
  .u-mb-44-sp {
    margin-bottom: 4.4rem;
  }
  .u-my-44-sp {
    margin-block: 4.4rem;
  }
  .u-mt-48-sp {
    margin-top: 4.8rem;
  }
  .u-mb-48-sp {
    margin-bottom: 4.8rem;
  }
  .u-my-48-sp {
    margin-block: 4.8rem;
  }
  .u-mt-52-sp {
    margin-top: 5.2rem;
  }
  .u-mb-52-sp {
    margin-bottom: 5.2rem;
  }
  .u-my-52-sp {
    margin-block: 5.2rem;
  }
  .u-mt-56-sp {
    margin-top: 5.6rem;
  }
  .u-mb-56-sp {
    margin-bottom: 5.6rem;
  }
  .u-my-56-sp {
    margin-block: 5.6rem;
  }
  .u-mt-60-sp {
    margin-top: 6rem;
  }
  .u-mb-60-sp {
    margin-bottom: 6rem;
  }
  .u-my-60-sp {
    margin-block: 6rem;
  }
  .u-mt-64-sp {
    margin-top: 6.4rem;
  }
  .u-mb-64-sp {
    margin-bottom: 6.4rem;
  }
  .u-my-64-sp {
    margin-block: 6.4rem;
  }
  .u-mt-68-sp {
    margin-top: 6.8rem;
  }
  .u-mb-68-sp {
    margin-bottom: 6.8rem;
  }
  .u-my-68-sp {
    margin-block: 6.8rem;
  }
  .u-mt-72-sp {
    margin-top: 7.2rem;
  }
  .u-mb-72-sp {
    margin-bottom: 7.2rem;
  }
  .u-my-72-sp {
    margin-block: 7.2rem;
  }
  .u-mt-76-sp {
    margin-top: 7.6rem;
  }
  .u-mb-76-sp {
    margin-bottom: 7.6rem;
  }
  .u-my-76-sp {
    margin-block: 7.6rem;
  }
  .u-mt-80-sp {
    margin-top: 8rem;
  }
  .u-mb-80-sp {
    margin-bottom: 8rem;
  }
  .u-my-80-sp {
    margin-block: 8rem;
  }
  .u-mt-84-sp {
    margin-top: 8.4rem;
  }
  .u-mb-84-sp {
    margin-bottom: 8.4rem;
  }
  .u-my-84-sp {
    margin-block: 8.4rem;
  }
  .u-mt-88-sp {
    margin-top: 8.8rem;
  }
  .u-mb-88-sp {
    margin-bottom: 8.8rem;
  }
  .u-my-88-sp {
    margin-block: 8.8rem;
  }
  .u-mt-92-sp {
    margin-top: 9.2rem;
  }
  .u-mb-92-sp {
    margin-bottom: 9.2rem;
  }
  .u-my-92-sp {
    margin-block: 9.2rem;
  }
  .u-mt-96-sp {
    margin-top: 9.6rem;
  }
  .u-mb-96-sp {
    margin-bottom: 9.6rem;
  }
  .u-my-96-sp {
    margin-block: 9.6rem;
  }
  .u-mt-100-sp {
    margin-top: 10rem;
  }
  .u-mb-100-sp {
    margin-bottom: 10rem;
  }
  .u-my-100-sp {
    margin-block: 10rem;
  }
  .u-mt-104-sp {
    margin-top: 10.4rem;
  }
  .u-mb-104-sp {
    margin-bottom: 10.4rem;
  }
  .u-my-104-sp {
    margin-block: 10.4rem;
  }
  .u-mt-108-sp {
    margin-top: 10.8rem;
  }
  .u-mb-108-sp {
    margin-bottom: 10.8rem;
  }
  .u-my-108-sp {
    margin-block: 10.8rem;
  }
  .u-mt-112-sp {
    margin-top: 11.2rem;
  }
  .u-mb-112-sp {
    margin-bottom: 11.2rem;
  }
  .u-my-112-sp {
    margin-block: 11.2rem;
  }
  .u-mt-116-sp {
    margin-top: 11.6rem;
  }
  .u-mb-116-sp {
    margin-bottom: 11.6rem;
  }
  .u-my-116-sp {
    margin-block: 11.6rem;
  }
  .u-mt-120-sp {
    margin-top: 12rem;
  }
  .u-mb-120-sp {
    margin-bottom: 12rem;
  }
  .u-my-120-sp {
    margin-block: 12rem;
  }
  .u-mt-124-sp {
    margin-top: 12.4rem;
  }
  .u-mb-124-sp {
    margin-bottom: 12.4rem;
  }
  .u-my-124-sp {
    margin-block: 12.4rem;
  }
  .u-mt-128-sp {
    margin-top: 12.8rem;
  }
  .u-mb-128-sp {
    margin-bottom: 12.8rem;
  }
  .u-my-128-sp {
    margin-block: 12.8rem;
  }
  .u-mt-132-sp {
    margin-top: 13.2rem;
  }
  .u-mb-132-sp {
    margin-bottom: 13.2rem;
  }
  .u-my-132-sp {
    margin-block: 13.2rem;
  }
  .u-mt-136-sp {
    margin-top: 13.6rem;
  }
  .u-mb-136-sp {
    margin-bottom: 13.6rem;
  }
  .u-my-136-sp {
    margin-block: 13.6rem;
  }
  .u-mt-140-sp {
    margin-top: 14rem;
  }
  .u-mb-140-sp {
    margin-bottom: 14rem;
  }
  .u-my-140-sp {
    margin-block: 14rem;
  }
  .u-mt-144-sp {
    margin-top: 14.4rem;
  }
  .u-mb-144-sp {
    margin-bottom: 14.4rem;
  }
  .u-my-144-sp {
    margin-block: 14.4rem;
  }
  .u-mt-148-sp {
    margin-top: 14.8rem;
  }
  .u-mb-148-sp {
    margin-bottom: 14.8rem;
  }
  .u-my-148-sp {
    margin-block: 14.8rem;
  }
  .u-mt-152-sp {
    margin-top: 15.2rem;
  }
  .u-mb-152-sp {
    margin-bottom: 15.2rem;
  }
  .u-my-152-sp {
    margin-block: 15.2rem;
  }
  .u-mt-156-sp {
    margin-top: 15.6rem;
  }
  .u-mb-156-sp {
    margin-bottom: 15.6rem;
  }
  .u-my-156-sp {
    margin-block: 15.6rem;
  }
  .u-mt-160-sp {
    margin-top: 16rem;
  }
  .u-mb-160-sp {
    margin-bottom: 16rem;
  }
  .u-my-160-sp {
    margin-block: 16rem;
  }
  .u-mx-left-sp {
    margin-inline: 0 auto;
  }
  .u-mx-center-sp {
    margin-inline: auto;
  }
  .u-mx-right-sp {
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

/* ---------- padding ---------- */
.u-pt-0 {
  padding-top: 0;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-py-0 {
  padding-block: 0;
}

.u-px-0 {
  padding-inline: 0;
}

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

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

.u-py-4 {
  padding-block: 0.4rem;
}

.u-px-4 {
  padding-inline: 0.4rem;
}

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

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

.u-py-8 {
  padding-block: 0.8rem;
}

.u-px-8 {
  padding-inline: 0.8rem;
}

.u-pt-12 {
  padding-top: 1.2rem;
}

.u-pb-12 {
  padding-bottom: 1.2rem;
}

.u-py-12 {
  padding-block: 1.2rem;
}

.u-px-12 {
  padding-inline: 1.2rem;
}

.u-pt-16 {
  padding-top: 1.6rem;
}

.u-pb-16 {
  padding-bottom: 1.6rem;
}

.u-py-16 {
  padding-block: 1.6rem;
}

.u-px-16 {
  padding-inline: 1.6rem;
}

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

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

.u-py-20 {
  padding-block: 2rem;
}

.u-px-20 {
  padding-inline: 2rem;
}

.u-pt-24 {
  padding-top: 2.4rem;
}

.u-pb-24 {
  padding-bottom: 2.4rem;
}

.u-py-24 {
  padding-block: 2.4rem;
}

.u-px-24 {
  padding-inline: 2.4rem;
}

.u-pt-28 {
  padding-top: 2.8rem;
}

.u-pb-28 {
  padding-bottom: 2.8rem;
}

.u-py-28 {
  padding-block: 2.8rem;
}

.u-px-28 {
  padding-inline: 2.8rem;
}

.u-pt-32 {
  padding-top: 3.2rem;
}

.u-pb-32 {
  padding-bottom: 3.2rem;
}

.u-py-32 {
  padding-block: 3.2rem;
}

.u-px-32 {
  padding-inline: 3.2rem;
}

.u-pt-36 {
  padding-top: 3.6rem;
}

.u-pb-36 {
  padding-bottom: 3.6rem;
}

.u-py-36 {
  padding-block: 3.6rem;
}

.u-px-36 {
  padding-inline: 3.6rem;
}

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

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

.u-py-40 {
  padding-block: 4rem;
}

.u-px-40 {
  padding-inline: 4rem;
}

.u-pt-44 {
  padding-top: 4.4rem;
}

.u-pb-44 {
  padding-bottom: 4.4rem;
}

.u-py-44 {
  padding-block: 4.4rem;
}

.u-px-44 {
  padding-inline: 4.4rem;
}

.u-pt-48 {
  padding-top: 4.8rem;
}

.u-pb-48 {
  padding-bottom: 4.8rem;
}

.u-py-48 {
  padding-block: 4.8rem;
}

.u-px-48 {
  padding-inline: 4.8rem;
}

.u-pt-52 {
  padding-top: 5.2rem;
}

.u-pb-52 {
  padding-bottom: 5.2rem;
}

.u-py-52 {
  padding-block: 5.2rem;
}

.u-px-52 {
  padding-inline: 5.2rem;
}

.u-pt-56 {
  padding-top: 5.6rem;
}

.u-pb-56 {
  padding-bottom: 5.6rem;
}

.u-py-56 {
  padding-block: 5.6rem;
}

.u-px-56 {
  padding-inline: 5.6rem;
}

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

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

.u-py-60 {
  padding-block: 6rem;
}

.u-px-60 {
  padding-inline: 6rem;
}

.u-pt-64 {
  padding-top: 6.4rem;
}

.u-pb-64 {
  padding-bottom: 6.4rem;
}

.u-py-64 {
  padding-block: 6.4rem;
}

.u-px-64 {
  padding-inline: 6.4rem;
}

.u-pt-68 {
  padding-top: 6.8rem;
}

.u-pb-68 {
  padding-bottom: 6.8rem;
}

.u-py-68 {
  padding-block: 6.8rem;
}

.u-px-68 {
  padding-inline: 6.8rem;
}

.u-pt-72 {
  padding-top: 7.2rem;
}

.u-pb-72 {
  padding-bottom: 7.2rem;
}

.u-py-72 {
  padding-block: 7.2rem;
}

.u-px-72 {
  padding-inline: 7.2rem;
}

.u-pt-76 {
  padding-top: 7.6rem;
}

.u-pb-76 {
  padding-bottom: 7.6rem;
}

.u-py-76 {
  padding-block: 7.6rem;
}

.u-px-76 {
  padding-inline: 7.6rem;
}

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

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

.u-py-80 {
  padding-block: 8rem;
}

.u-px-80 {
  padding-inline: 8rem;
}

.u-pt-84 {
  padding-top: 8.4rem;
}

.u-pb-84 {
  padding-bottom: 8.4rem;
}

.u-py-84 {
  padding-block: 8.4rem;
}

.u-px-84 {
  padding-inline: 8.4rem;
}

.u-pt-88 {
  padding-top: 8.8rem;
}

.u-pb-88 {
  padding-bottom: 8.8rem;
}

.u-py-88 {
  padding-block: 8.8rem;
}

.u-px-88 {
  padding-inline: 8.8rem;
}

.u-pt-92 {
  padding-top: 9.2rem;
}

.u-pb-92 {
  padding-bottom: 9.2rem;
}

.u-py-92 {
  padding-block: 9.2rem;
}

.u-px-92 {
  padding-inline: 9.2rem;
}

.u-pt-96 {
  padding-top: 9.6rem;
}

.u-pb-96 {
  padding-bottom: 9.6rem;
}

.u-py-96 {
  padding-block: 9.6rem;
}

.u-px-96 {
  padding-inline: 9.6rem;
}

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

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

.u-py-100 {
  padding-block: 10rem;
}

.u-px-100 {
  padding-inline: 10rem;
}

.u-pt-104 {
  padding-top: 10.4rem;
}

.u-pb-104 {
  padding-bottom: 10.4rem;
}

.u-py-104 {
  padding-block: 10.4rem;
}

.u-px-104 {
  padding-inline: 10.4rem;
}

.u-pt-108 {
  padding-top: 10.8rem;
}

.u-pb-108 {
  padding-bottom: 10.8rem;
}

.u-py-108 {
  padding-block: 10.8rem;
}

.u-px-108 {
  padding-inline: 10.8rem;
}

.u-pt-112 {
  padding-top: 11.2rem;
}

.u-pb-112 {
  padding-bottom: 11.2rem;
}

.u-py-112 {
  padding-block: 11.2rem;
}

.u-px-112 {
  padding-inline: 11.2rem;
}

.u-pt-116 {
  padding-top: 11.6rem;
}

.u-pb-116 {
  padding-bottom: 11.6rem;
}

.u-py-116 {
  padding-block: 11.6rem;
}

.u-px-116 {
  padding-inline: 11.6rem;
}

.u-pt-120 {
  padding-top: 12rem;
}

.u-pb-120 {
  padding-bottom: 12rem;
}

.u-py-120 {
  padding-block: 12rem;
}

.u-px-120 {
  padding-inline: 12rem;
}

.u-pt-124 {
  padding-top: 12.4rem;
}

.u-pb-124 {
  padding-bottom: 12.4rem;
}

.u-py-124 {
  padding-block: 12.4rem;
}

.u-px-124 {
  padding-inline: 12.4rem;
}

.u-pt-128 {
  padding-top: 12.8rem;
}

.u-pb-128 {
  padding-bottom: 12.8rem;
}

.u-py-128 {
  padding-block: 12.8rem;
}

.u-px-128 {
  padding-inline: 12.8rem;
}

.u-pt-132 {
  padding-top: 13.2rem;
}

.u-pb-132 {
  padding-bottom: 13.2rem;
}

.u-py-132 {
  padding-block: 13.2rem;
}

.u-px-132 {
  padding-inline: 13.2rem;
}

.u-pt-136 {
  padding-top: 13.6rem;
}

.u-pb-136 {
  padding-bottom: 13.6rem;
}

.u-py-136 {
  padding-block: 13.6rem;
}

.u-px-136 {
  padding-inline: 13.6rem;
}

.u-pt-140 {
  padding-top: 14rem;
}

.u-pb-140 {
  padding-bottom: 14rem;
}

.u-py-140 {
  padding-block: 14rem;
}

.u-px-140 {
  padding-inline: 14rem;
}

.u-pt-144 {
  padding-top: 14.4rem;
}

.u-pb-144 {
  padding-bottom: 14.4rem;
}

.u-py-144 {
  padding-block: 14.4rem;
}

.u-px-144 {
  padding-inline: 14.4rem;
}

.u-pt-148 {
  padding-top: 14.8rem;
}

.u-pb-148 {
  padding-bottom: 14.8rem;
}

.u-py-148 {
  padding-block: 14.8rem;
}

.u-px-148 {
  padding-inline: 14.8rem;
}

.u-pt-152 {
  padding-top: 15.2rem;
}

.u-pb-152 {
  padding-bottom: 15.2rem;
}

.u-py-152 {
  padding-block: 15.2rem;
}

.u-px-152 {
  padding-inline: 15.2rem;
}

.u-pt-156 {
  padding-top: 15.6rem;
}

.u-pb-156 {
  padding-bottom: 15.6rem;
}

.u-py-156 {
  padding-block: 15.6rem;
}

.u-px-156 {
  padding-inline: 15.6rem;
}

.u-pt-160 {
  padding-top: 16rem;
}

.u-pb-160 {
  padding-bottom: 16rem;
}

.u-py-160 {
  padding-block: 16rem;
}

.u-px-160 {
  padding-inline: 16rem;
}

@media screen and (max-width: 767px) {
  .u-pt-0-sp {
    padding-top: 0;
  }
  .u-pb-0-sp {
    padding-bottom: 0;
  }
  .u-py-0-sp {
    padding-block: 0;
  }
  .u-px-0-sp {
    padding-inline: 0;
  }
  .u-pt-4-sp {
    padding-top: 0.4rem;
  }
  .u-pb-4-sp {
    padding-bottom: 0.4rem;
  }
  .u-py-4-sp {
    padding-block: 0.4rem;
  }
  .u-px-4-sp {
    padding-inline: 0.4rem;
  }
  .u-pt-8-sp {
    padding-top: 0.8rem;
  }
  .u-pb-8-sp {
    padding-bottom: 0.8rem;
  }
  .u-py-8-sp {
    padding-block: 0.8rem;
  }
  .u-px-8-sp {
    padding-inline: 0.8rem;
  }
  .u-pt-12-sp {
    padding-top: 1.2rem;
  }
  .u-pb-12-sp {
    padding-bottom: 1.2rem;
  }
  .u-py-12-sp {
    padding-block: 1.2rem;
  }
  .u-px-12-sp {
    padding-inline: 1.2rem;
  }
  .u-pt-16-sp {
    padding-top: 1.6rem;
  }
  .u-pb-16-sp {
    padding-bottom: 1.6rem;
  }
  .u-py-16-sp {
    padding-block: 1.6rem;
  }
  .u-px-16-sp {
    padding-inline: 1.6rem;
  }
  .u-pt-20-sp {
    padding-top: 2rem;
  }
  .u-pb-20-sp {
    padding-bottom: 2rem;
  }
  .u-py-20-sp {
    padding-block: 2rem;
  }
  .u-px-20-sp {
    padding-inline: 2rem;
  }
  .u-pt-24-sp {
    padding-top: 2.4rem;
  }
  .u-pb-24-sp {
    padding-bottom: 2.4rem;
  }
  .u-py-24-sp {
    padding-block: 2.4rem;
  }
  .u-px-24-sp {
    padding-inline: 2.4rem;
  }
  .u-pt-28-sp {
    padding-top: 2.8rem;
  }
  .u-pb-28-sp {
    padding-bottom: 2.8rem;
  }
  .u-py-28-sp {
    padding-block: 2.8rem;
  }
  .u-px-28-sp {
    padding-inline: 2.8rem;
  }
  .u-pt-32-sp {
    padding-top: 3.2rem;
  }
  .u-pb-32-sp {
    padding-bottom: 3.2rem;
  }
  .u-py-32-sp {
    padding-block: 3.2rem;
  }
  .u-px-32-sp {
    padding-inline: 3.2rem;
  }
  .u-pt-36-sp {
    padding-top: 3.6rem;
  }
  .u-pb-36-sp {
    padding-bottom: 3.6rem;
  }
  .u-py-36-sp {
    padding-block: 3.6rem;
  }
  .u-px-36-sp {
    padding-inline: 3.6rem;
  }
  .u-pt-40-sp {
    padding-top: 4rem;
  }
  .u-pb-40-sp {
    padding-bottom: 4rem;
  }
  .u-py-40-sp {
    padding-block: 4rem;
  }
  .u-px-40-sp {
    padding-inline: 4rem;
  }
  .u-pt-44-sp {
    padding-top: 4.4rem;
  }
  .u-pb-44-sp {
    padding-bottom: 4.4rem;
  }
  .u-py-44-sp {
    padding-block: 4.4rem;
  }
  .u-px-44-sp {
    padding-inline: 4.4rem;
  }
  .u-pt-48-sp {
    padding-top: 4.8rem;
  }
  .u-pb-48-sp {
    padding-bottom: 4.8rem;
  }
  .u-py-48-sp {
    padding-block: 4.8rem;
  }
  .u-px-48-sp {
    padding-inline: 4.8rem;
  }
  .u-pt-52-sp {
    padding-top: 5.2rem;
  }
  .u-pb-52-sp {
    padding-bottom: 5.2rem;
  }
  .u-py-52-sp {
    padding-block: 5.2rem;
  }
  .u-px-52-sp {
    padding-inline: 5.2rem;
  }
  .u-pt-56-sp {
    padding-top: 5.6rem;
  }
  .u-pb-56-sp {
    padding-bottom: 5.6rem;
  }
  .u-py-56-sp {
    padding-block: 5.6rem;
  }
  .u-px-56-sp {
    padding-inline: 5.6rem;
  }
  .u-pt-60-sp {
    padding-top: 6rem;
  }
  .u-pb-60-sp {
    padding-bottom: 6rem;
  }
  .u-py-60-sp {
    padding-block: 6rem;
  }
  .u-px-60-sp {
    padding-inline: 6rem;
  }
  .u-pt-64-sp {
    padding-top: 6.4rem;
  }
  .u-pb-64-sp {
    padding-bottom: 6.4rem;
  }
  .u-py-64-sp {
    padding-block: 6.4rem;
  }
  .u-px-64-sp {
    padding-inline: 6.4rem;
  }
  .u-pt-68-sp {
    padding-top: 6.8rem;
  }
  .u-pb-68-sp {
    padding-bottom: 6.8rem;
  }
  .u-py-68-sp {
    padding-block: 6.8rem;
  }
  .u-px-68-sp {
    padding-inline: 6.8rem;
  }
  .u-pt-72-sp {
    padding-top: 7.2rem;
  }
  .u-pb-72-sp {
    padding-bottom: 7.2rem;
  }
  .u-py-72-sp {
    padding-block: 7.2rem;
  }
  .u-px-72-sp {
    padding-inline: 7.2rem;
  }
  .u-pt-76-sp {
    padding-top: 7.6rem;
  }
  .u-pb-76-sp {
    padding-bottom: 7.6rem;
  }
  .u-py-76-sp {
    padding-block: 7.6rem;
  }
  .u-px-76-sp {
    padding-inline: 7.6rem;
  }
  .u-pt-80-sp {
    padding-top: 8rem;
  }
  .u-pb-80-sp {
    padding-bottom: 8rem;
  }
  .u-py-80-sp {
    padding-block: 8rem;
  }
  .u-px-80-sp {
    padding-inline: 8rem;
  }
  .u-pt-84-sp {
    padding-top: 8.4rem;
  }
  .u-pb-84-sp {
    padding-bottom: 8.4rem;
  }
  .u-py-84-sp {
    padding-block: 8.4rem;
  }
  .u-px-84-sp {
    padding-inline: 8.4rem;
  }
  .u-pt-88-sp {
    padding-top: 8.8rem;
  }
  .u-pb-88-sp {
    padding-bottom: 8.8rem;
  }
  .u-py-88-sp {
    padding-block: 8.8rem;
  }
  .u-px-88-sp {
    padding-inline: 8.8rem;
  }
  .u-pt-92-sp {
    padding-top: 9.2rem;
  }
  .u-pb-92-sp {
    padding-bottom: 9.2rem;
  }
  .u-py-92-sp {
    padding-block: 9.2rem;
  }
  .u-px-92-sp {
    padding-inline: 9.2rem;
  }
  .u-pt-96-sp {
    padding-top: 9.6rem;
  }
  .u-pb-96-sp {
    padding-bottom: 9.6rem;
  }
  .u-py-96-sp {
    padding-block: 9.6rem;
  }
  .u-px-96-sp {
    padding-inline: 9.6rem;
  }
  .u-pt-100-sp {
    padding-top: 10rem;
  }
  .u-pb-100-sp {
    padding-bottom: 10rem;
  }
  .u-py-100-sp {
    padding-block: 10rem;
  }
  .u-px-100-sp {
    padding-inline: 10rem;
  }
  .u-pt-104-sp {
    padding-top: 10.4rem;
  }
  .u-pb-104-sp {
    padding-bottom: 10.4rem;
  }
  .u-py-104-sp {
    padding-block: 10.4rem;
  }
  .u-px-104-sp {
    padding-inline: 10.4rem;
  }
  .u-pt-108-sp {
    padding-top: 10.8rem;
  }
  .u-pb-108-sp {
    padding-bottom: 10.8rem;
  }
  .u-py-108-sp {
    padding-block: 10.8rem;
  }
  .u-px-108-sp {
    padding-inline: 10.8rem;
  }
  .u-pt-112-sp {
    padding-top: 11.2rem;
  }
  .u-pb-112-sp {
    padding-bottom: 11.2rem;
  }
  .u-py-112-sp {
    padding-block: 11.2rem;
  }
  .u-px-112-sp {
    padding-inline: 11.2rem;
  }
  .u-pt-116-sp {
    padding-top: 11.6rem;
  }
  .u-pb-116-sp {
    padding-bottom: 11.6rem;
  }
  .u-py-116-sp {
    padding-block: 11.6rem;
  }
  .u-px-116-sp {
    padding-inline: 11.6rem;
  }
  .u-pt-120-sp {
    padding-top: 12rem;
  }
  .u-pb-120-sp {
    padding-bottom: 12rem;
  }
  .u-py-120-sp {
    padding-block: 12rem;
  }
  .u-px-120-sp {
    padding-inline: 12rem;
  }
  .u-pt-124-sp {
    padding-top: 12.4rem;
  }
  .u-pb-124-sp {
    padding-bottom: 12.4rem;
  }
  .u-py-124-sp {
    padding-block: 12.4rem;
  }
  .u-px-124-sp {
    padding-inline: 12.4rem;
  }
  .u-pt-128-sp {
    padding-top: 12.8rem;
  }
  .u-pb-128-sp {
    padding-bottom: 12.8rem;
  }
  .u-py-128-sp {
    padding-block: 12.8rem;
  }
  .u-px-128-sp {
    padding-inline: 12.8rem;
  }
  .u-pt-132-sp {
    padding-top: 13.2rem;
  }
  .u-pb-132-sp {
    padding-bottom: 13.2rem;
  }
  .u-py-132-sp {
    padding-block: 13.2rem;
  }
  .u-px-132-sp {
    padding-inline: 13.2rem;
  }
  .u-pt-136-sp {
    padding-top: 13.6rem;
  }
  .u-pb-136-sp {
    padding-bottom: 13.6rem;
  }
  .u-py-136-sp {
    padding-block: 13.6rem;
  }
  .u-px-136-sp {
    padding-inline: 13.6rem;
  }
  .u-pt-140-sp {
    padding-top: 14rem;
  }
  .u-pb-140-sp {
    padding-bottom: 14rem;
  }
  .u-py-140-sp {
    padding-block: 14rem;
  }
  .u-px-140-sp {
    padding-inline: 14rem;
  }
  .u-pt-144-sp {
    padding-top: 14.4rem;
  }
  .u-pb-144-sp {
    padding-bottom: 14.4rem;
  }
  .u-py-144-sp {
    padding-block: 14.4rem;
  }
  .u-px-144-sp {
    padding-inline: 14.4rem;
  }
  .u-pt-148-sp {
    padding-top: 14.8rem;
  }
  .u-pb-148-sp {
    padding-bottom: 14.8rem;
  }
  .u-py-148-sp {
    padding-block: 14.8rem;
  }
  .u-px-148-sp {
    padding-inline: 14.8rem;
  }
  .u-pt-152-sp {
    padding-top: 15.2rem;
  }
  .u-pb-152-sp {
    padding-bottom: 15.2rem;
  }
  .u-py-152-sp {
    padding-block: 15.2rem;
  }
  .u-px-152-sp {
    padding-inline: 15.2rem;
  }
  .u-pt-156-sp {
    padding-top: 15.6rem;
  }
  .u-pb-156-sp {
    padding-bottom: 15.6rem;
  }
  .u-py-156-sp {
    padding-block: 15.6rem;
  }
  .u-px-156-sp {
    padding-inline: 15.6rem;
  }
  .u-pt-160-sp {
    padding-top: 16rem;
  }
  .u-pb-160-sp {
    padding-bottom: 16rem;
  }
  .u-py-160-sp {
    padding-block: 16rem;
  }
  .u-px-160-sp {
    padding-inline: 16rem;
  }
}
/* ---------- screen reader only ---------- */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

/* ---------- text ---------- */
/* --- head --- */
.u-text-head-1 {
  font-size: 4.6rem;
  line-height: 1.4782608696;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .u-text-head-1 {
    font-size: 3rem;
    line-height: 1.2666666667;
  }
}

.u-text-head-2 {
  font-size: 4.2rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .u-text-head-2 {
    font-size: 2.6rem;
    line-height: 1.3076923077;
  }
}

.u-text-head-3 {
  font-size: 3.4rem;
  line-height: 1.5882352941;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .u-text-head-3 {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}

.u-text-head-4 {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .u-text-head-4 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

/* --- body --- */
.u-text-body-1 {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .u-text-body-1 {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.u-text-body-1 + p.u-text-body-1 {
  margin-top: 1.8888888889em;
}
@media screen and (max-width: 767px) {
  .u-text-body-1 + p.u-text-body-1 {
    margin-top: 1.7142857143em;
  }
}

.u-text-body-2 {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .u-text-body-2 {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    letter-spacing: 0.05em;
  }
}
.u-text-body-2 + p.u-text-body-2 {
  margin-top: 1.875em;
}
@media screen and (max-width: 767px) {
  .u-text-body-2 + p.u-text-body-2 {
    margin-top: 1.7142857143em;
  }
}

.u-text-body-3 {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.u-text-body-3 + p.u-text-body-3 {
  margin-top: 1.7142857143em;
}

.u-text-weight-bold {
  font-weight: var(--fw-bold);
}

.u-text-marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text-inline-block {
  display: inline-block;
}

.u-text-indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

.u-text-capitalize {
  text-transform: capitalize;
}