@charset "UTF-8";

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

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

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(p) {
  margin: 0;
}

:root {
  /* inner */
  --inner: min(1240px, 100%);
  --padding-inner: 40px;
  /* z-index */
  --z-index-header: 100;
  /* color */
  --color-primary: #006e6b;
  --color-green: #22ae65;
  --color-text: #333333;
  --color-text-dark: #323e4f;
  --color-yellow: #fff600;
  --color-cta-orange: #ff9a13;
  --color-cta-mint: #3ed0a1;
  --color-cta-bg: #436060;
  --color-fv-bg: #EEFFF6;
  --color-fv-wave: #2ebf91;
  --color-headline: #858585;
  --color-white: #fff;
  --color-bg-cream: #f6f7e9;
  --color-bg-faq: #eefff6;
  --color-bg-gray: #f4f4f4;
  /* gradient */
  --gradient-green: linear-gradient(90deg, #16d2d2 0%, #37d27e 100%);
  --gradient-orange: linear-gradient(92.92deg, #FFC800 0.15%, #FF7E15 22.33%);
  /* セクションCTA・FV（スクショ：左 #FF8020 → 右 #FFD200、緑は #39D385 系） */
  --color-cta-section-green: #39d385;
  /* オレンジボタン右側は黄色寄りの地色 → 三角はノックアウト風にゴールド系 */
  --color-cta-arrow-green: #39d385;
  --color-header-cta-green-solid: #39d385;
  --color-header-cta-arrow-green: #39d385;
  /* font-family */
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-futura: "futura-pt", "Futura", sans-serif;
  /* font-weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* shadow */
  --shadow-btn: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* 大型CTA：下方向にぼかし多めの浮き感 */
  --shadow-btn-cta: 0 6px 18px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  /* 大型CTA 角丸（高さに対し約 20〜24px） */
  --radius-btn-cta: 22px;
  /* transition */
  --duration: 0.3s;
  /* header height（内側の白バー） */
  --header-height: 60px;
}

@media screen and (width >=768px) {
  :root {
    --header-height: 88px;
  }
}

html {
  caret-color: transparent;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

@media screen and (max-width: 1280px) {
  html {
    font-size: calc(16 / 1280 * 100svw);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--font-gothic);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  vertical-align: middle;
}

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

ul {
  list-style: none;
}

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

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

.l-header {
  position: fixed;
  top: 0.625rem;
  left: 0.625rem;
  right: 0.625rem;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 768px) {
  .l-header {
    top: 1.375rem;
    left: 1.625rem;
    right: 1.625rem;
  }
}

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

.l-main {
  display: block;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gothic);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: opacity var(--duration);
  border: none;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease;
}

.c-btn__text {
  font-weight: 700;
  translate: -8%;
  position: relative;
  z-index: 1;
}

.c-btn__icon {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  background: var(--color-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.c-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -30% -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.1875rem solid transparent;
  border-bottom: 0.1875rem solid transparent;
  border-left: 0.25rem solid #666666;
  border-right: 0;
}

.c-btn__icon svg {
  display: none;
}

.c-btn--orange .c-btn__icon::after {
  border-left-color: var(--color-cta-orange);
  transition: border-left-color 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn--orange:hover .c-btn__icon::after {
    border-left-color: #FF4115;
  }
}

.c-btn--mint .c-btn__icon::after {
  border-left-color: var(--color-cta-mint);
}

.c-btn--orange {
  background: var(--gradient-orange);
}

.c-btn--mint {
  background: var(--color-cta-mint);
}

.c-btn--header {
  height: 3rem;
  padding: 0.625rem;
  border-radius: 0.3125rem;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  width: 15.1875rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  /* 高さの約 65%（ヘッダーは本体に合わせて小さめ） */
}

@media screen and (min-width: 768px) {
  .c-btn--header {
    width: 11.25rem;
    font-size: 1rem;
    height: 2.625rem;
  }
}

.c-btn--header.c-btn--orange {
  background: var(--gradient-orange);
  font-size: 1.125rem;
}

.c-btn--header.c-btn--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #FF6D02 0%, #FF390A 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-btn--header.c-btn--orange {
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .c-btn--header.c-btn--orange:hover::before {
    opacity: 1;
  }
}

.c-btn--header.c-btn--mint {
  background: var(--color-header-cta-green-solid);
}

.c-btn--header .c-btn__icon {
  width: 1rem;
  height: 1rem;
  right: 0.625rem;
}

.c-btn--fv {
  height: 3rem;
  padding: 1rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  width: 15.625rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 768px) {
  .c-btn--fv {
    font-size: 1.25rem;
    height: 3.875rem;
  }
}

.c-btn--fv.c-btn--orange {
  background: var(--gradient-orange);
  font-size: 1.125rem;
}

.c-btn--fv.c-btn--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #FF6D02 0%, #FF390A 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn--fv.c-btn--orange:hover::before {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-btn--fv.c-btn--orange {
    font-size: 1.25rem;
  }
}

.c-btn--fv.c-btn--mint {
  background: var(--color-header-cta-green-solid);
}

.c-btn--fv .c-btn__icon {
  width: 1.3125rem;
  height: 1.3125rem;
  right: 1.125rem;
}

.c-btn--fv .c-btn__icon::after {
  translate: -40% -50%;
  border-top-width: 0.25rem;
  border-bottom-width: 0.25rem;
  border-left-width: 0.3125rem;
}

.c-btn--cta {
  height: 3.875rem;
  padding: 1rem;
  border-radius: 0.625rem;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  width: 17.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.c-btn--cta .c-btn__text {
  translate: -10%;
}

.c-btn--cta.c-btn--orange {
  background: var(--gradient-orange);
  font-size: 1.25rem;
}

.c-btn--cta.c-btn--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #FF6D02 0%, #FF390A 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn--cta.c-btn--orange:hover::before {
    opacity: 1;
  }
}

.c-btn--cta.c-btn--mint {
  background: var(--color-header-cta-green-solid);
}

.c-btn--cta .c-btn__icon {
  width: 1.3125rem;
  height: 1.3125rem;
  right: 1.125rem;
}

.c-btn--cta .c-btn__icon::after {
  translate: -40% -50%;
  border-top-width: 0.25rem;
  border-bottom-width: 0.25rem;
  border-left-width: 0.3125rem;
}

.c-hamburger {
  width: 4rem;
  height: 4rem;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}

.p-header__sp-cta {
  position: fixed;
  top: 0;
  right: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  padding-right: 0.375rem;
}

.p-header__sp-cta .c-btn--header {
  width: 8.5rem;
  height: 2.25rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  padding: 0.5rem 0.625rem;
}

.c-hamburger__bar {
  width: 20px;
  height: 1px;
  background: var(--gradient-green);
  position: absolute;
  left: 50%;
  translate: -50%;
  transition: rotate 0.2s ease-in-out;
}

.c-hamburger__bar:nth-child(1) {
  top: 24px;
}

.c-hamburger__bar:nth-child(2) {
  top: 50%;
  translate: -50% -50%;
}

.c-hamburger__bar:nth-child(3) {
  bottom: 24px;
}

.is-active .c-hamburger__bar {
  width: 28.14px;
}

.is-active .c-hamburger__bar:nth-child(1) {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 135deg;
}

.is-active .c-hamburger__bar:nth-child(2) {
  display: none;
}

.is-active .c-hamburger__bar:nth-child(3) {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -135deg;
}

@media screen and (min-width: 768px) {
  .p-header__sp-cta {
    display: none;
  }

  .c-hamburger {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-fv-bg);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.is-active .c-overlay {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .c-overlay {
    display: none;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.c-section-title__en {
  font-family: var(--font-futura);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 64px;
  }
}

.c-section-title__en--white {
  -webkit-text-fill-color: #fffdcf;
  color: #fffdcf;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.c-section-title__ja {
  font-size: 24px;
  font-weight: var(--fw-medium);
  line-height: 1.17;
  color: var(--color-text);
  margin-top: 4px;
}

@media screen and (min-width: 768px) {
  .c-section-title__ja {
    font-size: 36px;
  }
}

.c-section-title__ja--white {
  color: var(--color-white);
}

.p-cta {
  background: var(--color-cta-bg);
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .p-cta {
    padding: 4.0625rem 0;
  }
}

.p-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-cta__inner {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.p-features {
  background: var(--color-fv-bg);
  padding-top: 3.75rem;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-features {
    padding-top: 3.75rem;
  }
}

.p-features__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding-inline: 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-features__inner {
    padding-inline: var(--padding-inner);
    max-width: var(--inner);
  }
}

.p-features__head {
  text-align: center;
}

.p-features__title {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.17;
  color: var(--color-text);
  padding-bottom: 0.375rem;
  border-bottom: 2px solid var(--color-text);
}

.p-features__title h2 {
  font-size: 1.5rem;
  font-weight: 500;
  padding-inline: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-features__title h2 {
    font-size: 2rem;
    font-weight: 500;
  }
}

.p-features__badge {
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.625rem;
  background: var(--color-green);
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-features__badge {
    padding: 0.75rem 2.625rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }
}

.p-features__badge img {
  position: absolute;
  top: 3.625rem;
  left: -1.75rem;
  width: 1.875rem;
  height: auto;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-features__badge img {
    top: 2rem;
    left: -2.5rem;
    width: 3.1875rem;
    height: auto;
    object-fit: contain;
  }
}

.p-features__badge span {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-yellow);
}

@media screen and (min-width: 768px) {
  .p-features__badge span {
    font-size: 1.75rem;
  }
}

.p-features__badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 12px solid var(--color-green);
  border-bottom: 0;
}

.p-features__lead {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.75rem;
}

.p-features__lead span {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-features__lead {
    font-size: 3.375rem;
    line-height: 5rem;
  }

  .p-features__lead span {
    font-size: 4rem;
    line-height: 5rem;
  }
}

.p-features__intro {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 30px;
}

.p-features__intro img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-features__intro {
    margin-bottom: 60px;
    margin-top: 40px;
  }
}

.p-features__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block-start: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-features__cards {
    gap: 2.5rem;
    margin-block-start: 2.6875rem;
  }
}

.p-features__card {
  position: relative;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-features__card {
    padding: 1.625rem 3.5rem;
  }
}

.p-features__card-number {
  position: absolute;
  top: -0.625rem;
  left: -0.625rem;
  z-index: 1;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #16D2D2 0%, #37D27E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

@media screen and (min-width: 768px) {
  .p-features__card-number {
    top: -1rem;
    left: -1rem;
    width: 5.8125rem;
    height: 5.8125rem;
  }
}

.p-features__card-menu {
  font-family: var(--font-futura);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-features__card-menu {
    font-size: 0.875rem;
  }
}

.p-features__card-num {
  font-family: var(--font-futura);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-features__card-num {
    font-size: 2.625rem;
  }
}

.p-features__card-content {
  flex: 1;
}

.p-features__card-desc {
  margin-left: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.p-features__card-desc span,
.p-features__card-desc .u-text-green {
  color: var(--color-green);
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-features__card-desc {
    margin-left: 5.625rem;
    font-size: 1.5rem;
  }
}

.p-features__card-tags {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1.25rem;
  row-gap: 0.75rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-features__card-tags {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.25rem;
    row-gap: 0.875rem;
  }
}

.p-features__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  background: #E1ECE6;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .p-features__tag {
    font-size: 1.125rem;
    padding-block: 1.125rem;
  }
}

.p-features__card-illust {
  position: absolute;
  right: 2.375rem;
  top: -4.5rem;
  width: 2.25rem;
  height: auto;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-features__card-illust {
    right: 6.25rem;
    top: -4.875rem;
    width: 3.6875rem;
  }
}

.p-features__bottom {
  max-width: var(--inner);
  margin-inline: auto;
  margin-block: 1.875rem 3.75rem;
  border-radius: 0.625rem;
  padding: 1.5rem 1.25rem;
  background-image: var(--lp-features-bottom-bg);
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .p-features__bottom {
    margin-block: 2.9375rem 4.125rem;
    padding: 4.125rem 1.25rem;
  }
}

.p-features__bottom-inner {
  max-width: 700px;
  margin: 0 auto;
}

.p-features__tools-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .p-features__tools-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

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

@media screen and (min-width: 768px) {
  .p-features__tools {
    gap: 1.125rem;
  }
}

.p-features__tool-box {
  background: var(--color-white);
  border-radius: 0.625rem;
  padding-inline: 1rem;
  padding-block: 1rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-features__tool-box {
    padding-inline: 1.5rem;
    padding-block: 1rem 1.75rem;
  }
}

.p-features__tool-label {
  display: block;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-green);
  margin-bottom: 1rem;
  border: 0.125rem solid var(--color-green);
  border-radius: 0.625rem;
  padding: 0rem 0.625rem;
  background: var(--color-white);
}

@media screen and (min-width: 768px) {
  .p-features__tool-label {
    font-size: 1.5rem;
  }
}

.p-features__tool-content {
  margin-inline: 0.375rem 0;
}

@media screen and (min-width: 768px) {
  .p-features__tool-content {
    margin-inline: 2.9375rem 0;
  }
}

.p-features__tool-sublabel {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-features__tool-sublabel {
    align-items: center;
    font-size: 1rem;
  }
}

.p-features__check {
  margin-top: 0.375rem;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .p-features__check {
    margin-top: 0.125rem;
    width: 1rem;
    height: 1rem;
  }
}

.p-features__tool-list {
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  text-align: left;
  list-style-type: disc;
}

@media screen and (min-width: 768px) {
  .p-features__tool-list {
    padding-left: 2.5rem;
  }
}

.p-features__tool-list li {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-features__tool-list li {
    font-size: 1rem;
  }
}

.p-features__tool-list li span {
  display: block;
  margin-inline-start: 0rem;
}

@media screen and (min-width: 768px) {
  .p-features__tool-list li span {
    margin-inline-start: 2.875rem;
  }
}

.p-features__tool-note {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
  text-align: left;
}

.p-features__tool-note:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-features__tool-note {
    font-size: 16px;
    align-items: center;
  }
}

.p-flow {
  padding: 3.5rem 0 3.75rem;
  background: linear-gradient(90deg, #13c9b3 0%, #3fd06c 100%);
  /* FLOW 透かし＋見出し */
}

@media screen and (min-width: 768px) {
  .p-flow {
    padding: 5.5rem 0 4.375rem;
  }
}

.p-flow__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding-inline: 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-inline: var(--padding-inner);
    max-width: var(--inner);
  }
}

.p-flow__head {
  position: relative;
  text-align: center;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-flow__head {
    margin-bottom: 1.5rem;
  }
}

.p-flow__head-en {
  position: absolute;
  top: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--font-futura);
  font-size: 3.625rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #FFFDCF;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.p-flow__head-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .p-flow__head-ja {
    font-size: 2.25rem;
  }
}

.p-flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media screen and (min-width: 768px) {
  .p-flow__steps {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }
}

.p-flow__cell {
  width: 100%;
  max-width: 20rem;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-flow__cell {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}

.p-flow__arrow {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 0.6875rem solid transparent;
  border-right: 0.6875rem solid transparent;
  border-top: 0.6875rem solid var(--color-white);
}

@media screen and (min-width: 768px) {
  .p-flow__arrow {
    align-self: center;
    width: 0;
    height: 0;
    margin-inline: 0;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 0.9375rem solid var(--color-white);
    border-right: none;
  }
}

.p-flow__step {
  position: relative;
  width: 100%;
  margin-top: 1.75rem;
  background: var(--color-white);
  border-radius: 0.625rem;
  padding-inline: 1rem;
  padding-block: 3.75rem 2.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-flow__step {
    max-width: none;
    margin-top: 2rem;
    padding-inline: 1.25rem;
    padding-block: 3.75rem 2.5rem;
    border-radius: 0.625rem;
  }
}

.p-flow__step-num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-green);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .p-flow__step-num {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.p-flow__step-num span {
  font-family: var(--font-futura);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-flow__step-num span {
    font-size: 1.25rem;
  }
}

.p-flow__step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p-flow__step-title {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.35;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-flow__step-title {
    min-height: 3.75rem;
    font-size: 1.375rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  min-height: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-flow__step-icon {
    min-height: 5.625rem;
    margin-bottom: 2rem;
  }
}

.p-flow__step-icon img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 3.75rem;
  width: auto;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-flow__step-icon img {
    max-height: 5.625rem;
  }
}

.p-flow__step-text {
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.65;
  color: var(--color-text);
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-flow__step-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.p-footer {
  background: var(--gradient-green);
  color: var(--color-white);
  padding-block: 3.5625rem 0;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    font-size: 1rem;
  }
}

.p-footer__inner {
  margin: 0 auto;
  padding: 0 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: var(--inner);
    padding: 0 var(--padding-inner);
    display: flex;
    justify-content: space-between;
  }
}

.p-footer__logo {
  display: block;
  width: 100%;
  max-width: 20.3125rem;
}

.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__meta {
  margin-block: 1.5rem 0;
}

@media screen and (min-width: 768px) {
  .p-footer__meta {
    margin-block: 3.6875rem 0;
  }
}

.p-footer__body {
  margin-block: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .p-footer__body {
    margin-block: 0;
  }
}

.p-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1.25rem;
  row-gap: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.5rem;
    row-gap: 0.75rem;
  }
}

.p-footer__nav-link {
  display: flex;
  align-items: center;
  column-gap: 0.375rem;
  transition: opacity 0.3s ease;
}

.p-footer__nav-link span {
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background: #A6FFD1;
}

@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    opacity: 0.8;
  }
}

.p-footer__sub-nav {
  margin-block: 1.5rem 0;
}

@media screen and (min-width: 768px) {
  .p-footer__sub-nav {
    margin-block: 7.125rem 0;
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
  }
}

.p-footer__sub-nav-item a {
  display: flex;
  align-items: center;
  column-gap: 0.375rem;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .p-footer__sub-nav-item a:hover {
    opacity: 0.8;
  }
}

.p-footer__foot {
  margin-block: 3.75rem 0;
  margin-inline: auto;
  padding-block: 1.5rem;
  border-top: solid 0.125rem var(--color-white);
  max-width: 49.1875rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__foot {
    padding-block: 1.875rem;
  }
}

.p-footer__copyright {
  font-size: 0.75rem;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 1rem;
  }
}

.p-fv-wave {
  position: absolute;
  bottom: 0.0625rem;
  left: 0;
  right: 0;
  width: 100%;
  translate: 0 100%;
  z-index: 1;
  aspect-ratio: 1280/100;
  background: var(--color-fv-bg);
  clip-path: url(#fv-wave-clip);
}

@media screen and (min-width: 768px) {
  .p-fv-wave {
    bottom: 1.875rem;
  }
}

.p-fv {
  position: relative;
  width: 100%;
  padding-top: 4.375rem;
  padding-bottom: 0.625rem;
  background-color: var(--color-fv-bg);
}

@media screen and (min-width: 768px) {
  .p-fv {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 3.625rem;
  }
}

.p-fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem 0;
}

@media screen and (min-width: 768px) {
  .p-fv__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 5rem;
    padding: 2.5rem 5rem 0;
  }
}

.p-fv__content {
  flex: 1 1 auto;
  width: 100%;
  display: contents;
}

@media screen and (min-width: 768px) {
  .p-fv__content {
    display: block;
    width: 35rem;
  }
}

.p-fv__badge {
  margin: 0 0 0.625rem;
  order: -3;
}

@media screen and (min-width: 768px) {
  .p-fv__badge {
    margin-bottom: 1.25rem;
  }
}

.p-fv__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-fv__badge-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 0.625rem;
  }
}

.p-fv__badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.625rem;
  font-family: var(--font-gothic);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-white);
  background: linear-gradient(90deg, #16D2D2 0%, #37D27E 100%);
  border-radius: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-fv__badge-pill {
    padding: 0.375rem 0.8125rem 0.625rem;
    font-size: 2.1875rem;
  }
}

.p-fv__badge-text {
  font-family: var(--font-gothic);
  font-size: 2.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-cta-mint);
  background: linear-gradient(90deg, #16D2D2 0%, #37D27E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media screen and (min-width: 768px) {
  .p-fv__badge-text {
    font-size: 2.75rem;
  }
}

.p-fv__title {
  margin: 0;
  order: -2;
  margin-bottom: 1.4375rem;
}

@media screen and (min-width: 768px) {
  .p-fv__title {
    margin-bottom: 0;
  }
}

.p-fv__headline {
  display: block;
  font-family: var(--font-gothic);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1.45;
  color: var(--color-headline);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-fv__headline {
    font-size: 1.75rem;
    line-height: 1.35;
    text-align: left;
  }
}

.p-fv__headline strong {
  font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
  .p-fv__headline strong {
    font-size: 2.125rem;
  }
}

.p-fv__description {
  margin: 1.125rem 0 0;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 0.6875rem;
}

@media screen and (min-width: 768px) {
  .p-fv__description {
    text-align: left;
    row-gap: 0;
    margin-top: 1.125rem;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
  }
}

.p-fv__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-fv__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.875rem;
    margin-top: 2rem;
  }
}

.p-fv__illustration {
  flex: 0 1 auto;
  width: 62vw;
  order: -1;
}

@media screen and (min-width: 768px) {
  .p-fv__illustration {
    width: 29.3125rem;
    order: 1;
  }
}

.p-fv__illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-block: 0.625rem 0;
  padding-inline: 0.625rem;
  background: var(--color-white);
  border-radius: 0.625rem;
  height: 2.9375rem;
  transition: all 0.5s ease;
}

.is-active .p-header__inner {
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 1.875rem;
    padding-block: 0.625rem;
    padding-inline: 1.625rem 1.25rem;
    height: auto;
  }
}

.p-header__logo {
  flex-shrink: 0;
  padding-block: 0 0.625rem;
}

.p-header__logo img {
  display: block;
  width: 7.3125rem;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    padding-block: 0;
  }

  .p-header__logo img {
    width: 10.625rem;
  }
}

.p-header__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  column-gap: 1.875rem;
  width: calc(100% + 1.25rem);
  transform: scaleY(0);
  transform-origin: top;
  visibility: visible;
  transition: all 0.2s ease;
  background: var(--color-white);
  margin-inline: -0.625rem;
}

.is-active .p-header__nav {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    width: auto;
    flex-direction: row;
    transform: scaleY(1);
    visibility: visible;
  }
}

.p-header__nav-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  column-gap: 1.4375rem;
  row-gap: 1.5rem;
  justify-content: end;
  flex: 1;
  padding-inline: 1.75rem;
  padding-block: 1.5rem 1.875rem;
  position: relative;
}

.p-header__nav-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0 50%;
  border-radius: 0 0 0.625rem 0.625rem;
  right: 0;
  height: 1.25rem;
  background: var(--color-white);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-header__nav-list::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.4375rem;
    row-gap: 0;
    padding-inline: 0;
    padding-block: 0;
    justify-content: end;
    flex: 1;
  }
}

.p-header__nav-list a {
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: 0.5rem;
  justify-content: space-between;
  padding-inline: 0.5rem;
  padding-block-end: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
  white-space: nowrap;
  transition: opacity var(--duration);
  border-bottom: 1px solid #DBE9E1;
  transition: all 0.2s ease;
}

@media screen and (min-width: 768px) {
  .p-header__nav-list a {
    display: block;
    padding-inline: 0;
    padding-block-end: 0;
    border-bottom: none;
  }
}

.p-header__nav-list a span.arrow {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--gradient-green);
  position: relative;
}

.p-header__nav-list a span.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -30% -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4.5px solid var(--color-white);
  border-right: 0;
}

@media screen and (min-width: 768px) {
  .p-header__nav-list a span.arrow {
    display: none;
  }
}

@media (any-hover: hover) {
  .p-header__nav-list a:hover {
    color: var(--color-green);
  }
}

.p-header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 100vw;
  margin-inline: -1.25rem;
  padding-block: 2.5rem 2.5rem;
  background: var(--color-fv-bg);
}

@media screen and (min-width: 768px) {
  .p-header__cta {
    flex-direction: row;
    gap: 0.5rem;
    margin-left: 0;
    justify-self: end;
    width: auto;
    padding-block: 0;
    margin-inline: 0;
  }
}

.p-problems-stack {
  background: linear-gradient(90deg, #16D2D2 0%, #37D27E 100%);
}

.p-problems-intro {
  position: relative;
  width: 100%;
  padding: 4.375rem 0 0.625rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-problems-intro {
    padding: 9.375rem 0 0.625rem;
  }
}

.p-problems-intro__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__inner {
    padding: 0 var(--padding-inner);
    max-width: none;
  }
}

.p-problems-intro__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-gothic);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.45;
}

.p-problems-intro__title-line1 {
  display: block;
  font-size: 1.375rem;
}

.p-problems-intro__title-line1 strong {
  font-weight: 700;
  color: var(--color-yellow);
}

@media screen and (min-width: 768px) {
  .p-problems-intro__title-line1 {
    font-size: 1.875rem;
  }
}

.p-problems-intro__title-u {
  font-size: 1.625rem;
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.375rem;
}

.p-problems-intro__title-u span {
  font-size: 1.375rem;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__title-u {
    font-size: 2.25rem;
  }

  .p-problems-intro__title-u span {
    font-size: 2.25rem;
  }
}

.p-problems-intro__title-line2 {
  display: block;
  margin-top: 0.35em;
  font-size: 1.375rem;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__title-line2 {
    font-size: 1.875rem;
  }
}

.p-problems-intro__grid-wrap {
  position: relative;
  padding: 9.375rem 0 3.4375rem;
  isolation: isolate;
  margin-top: 0.625rem;
}

.p-problems-intro__grid-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 3.578125rem;
  height: 2.56875rem;
  background: url("data:image/svg+xml,%3csvg%20width='42'%20height='58'%20viewBox='0%200%2042%2058'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_336_5)'%3e%3cpath%20d='M41.0996%203.73515L41.0996%201.79651e-06L20.55%2015.2195L0.000356216%200L0.000356052%203.73515L20.55%2018.9546L41.0996%203.73515Z'%20fill='white'/%3e%3cpath%20d='M41.0996%2013.3042L41.0996%209.57642L20.55%2024.7959L0.000356216%209.57642L0.000356053%2013.3042L20.55%2028.5237L41.0996%2013.3042Z'%20fill='white'/%3e%3cpath%20d='M41.0996%2022.8806L41.0996%2019.1454L20.55%2034.3649L0.000356216%2019.1454L0.000356052%2022.8806L20.55%2038.1L41.0996%2022.8806Z'%20fill='white'/%3e%3cpath%20d='M41.0996%2032.4496L41.0996%2028.7218L20.55%2043.9412L0.000356216%2028.7218L0.000356053%2032.4496L20.55%2047.6764L41.0996%2032.4496Z'%20fill='white'/%3e%3cpath%20d='M41.0996%2042.026L41.0996%2038.2908L20.55%2053.5103L0.000356216%2038.2908L0.000356052%2042.026L20.55%2057.2454L41.0996%2042.026Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_336_5'%3e%3crect%20width='57.2454'%20height='41.0993'%20fill='white'%20transform='translate(41.0996%201.79651e-06)%20rotate(90)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__grid-wrap {
    margin-top: 1rem;
    padding: 8.75rem 0 6.25rem;
  }

  .p-problems-intro__grid-wrap::after {
    display: none;
  }
}

.p-problems-intro__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__grid-bg {
    align-items: center;
  }
}

.p-problems-intro__grid-bg picture,
.p-problems-intro__grid-bg img {
  display: block;
  width: 10.625rem;
  height: auto;
  object-fit: contain;
  object-position: center;
}

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

  .p-problems-intro__grid-bg picture,
  .p-problems-intro__grid-bg img {
    display: block;
    width: auto;
    max-height: min(70vh, 640px);
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

.p-problems-intro__grid-bg img {
  mix-blend-mode: lighten;
}

.p-problems-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.75rem;
    column-gap: 0.8125rem;
    padding-inline: 0;
  }
}

.p-problems-intro__card {
  background: #2C503D;
  border-radius: 1rem 1rem 1rem 0;
  padding-block: 1.1875rem 1.375rem;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.676875rem;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__card {
    padding: 1.5rem;
    border-radius: 1.25rem 1.25rem 1.25rem 0;
    min-height: 10.5rem;
    row-gap: 0.8125rem;
  }
}

.p-problems-intro__card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  color: #FFFDB9;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__card-title {
    font-size: 1.5rem;
  }
}

.p-problems-intro__card-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-white);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-problems-intro__card-text {
    font-size: 1rem;
    text-align: left;
  }
}

.p-problems-wave {
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  aspect-ratio: 1280/100;
  background: var(--color-fv-bg);
  clip-path: url(#problems-wave-clip);
  transform: rotateY(180deg);
}

.p-problems {
  position: relative;
  background: transparent;
  padding-block: 1rem 7.5rem;
}

@media screen and (min-width: 768px) {
  .p-problems {
    padding-block: 1.625rem 10rem;
  }
}

.p-problems__inner {
  margin: 0 auto;
  padding: 0 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-problems__inner {
    max-width: var(--inner);
    padding: 0 var(--padding-inner);
  }
}

.p-problems__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--color-white);
  border-radius: 999px;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.25;
}

.p-problems__badge span {
  color: var(--color-green);
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-problems__badge {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-problems__badge span {
    font-size: 1.875rem;
  }
}

.p-problems__badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.875rem solid transparent;
  border-left: 0.875rem solid transparent;
  border-top: 0.75rem solid var(--color-white);
  border-bottom: 0;
}

.p-problems__heading {
  text-align: center;
  margin-bottom: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-problems__heading {
    margin-bottom: 1.75rem;
  }
}

.p-problems__fukidashi {
  display: block;
  width: min(100%, 547px);
  height: auto;
  margin: 0 auto 20px;
}

@media screen and (min-width: 768px) {
  .p-problems__fukidashi {
    margin-bottom: 24px;
  }
}

.p-problems__heading-main {
  margin-top: 0.125rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  text-align: center;
}

.p-problems__heading-main span {
  color: var(--color-yellow);
}

@media screen and (min-width: 768px) {
  .p-problems__heading-main {
    margin-top: 0.375rem;
    font-size: 2.625rem;
  }
}

.p-problems__block {
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .p-problems__block {
    margin-bottom: 1.5rem;
  }
}

.p-problems__block:last-child {
  margin-bottom: 0;
}

.p-problems__block-inner {
  background: var(--color-white);
  border-radius: 0.625rem;
  padding-inline: 1.25rem;
  padding-block: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media screen and (min-width: 768px) {
  .p-problems__block-inner {
    margin-inline: auto;
    max-width: 80rem;
    border-radius: 0.625rem;
    padding-block: 2.25rem;
    padding-inline: 5.9375rem 6.25rem;
  }
}

.p-problems__block-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-problems__block-body {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 3.75rem;
  }
}

.p-problems__block-content {
  display: contents;
}

@media screen and (min-width: 768px) {
  .p-problems__block-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    flex: 1;
  }
}

.p-problems__block-label {
  align-self: flex-start;
  background: linear-gradient(90deg, #26cfd0 0%, #34d058 100%);
  border-radius: 0.3125rem;
  padding: 0.125rem 0.9375rem;
  width: 19.8125rem;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-problems__block-label {
    width: auto;
    padding: 0.125rem 0.9375rem;
  }
}

.p-problems__block-label span {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .p-problems__block-label span {
    font-size: 1.875rem;
  }
}

.p-problems__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
  order: 3;
}

@media screen and (min-width: 768px) {
  .p-problems__list {
    row-gap: 1.25rem;
  }
}

.p-problems__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
}

.p-problems__list-item img {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-problems__list-item {
    gap: 0.875rem;
  }

  .p-problems__list-item img {
    margin-top: 0.5rem;
  }
}

.p-problems__list-copy {
  flex: 1;
  min-width: 0;
}

.p-problems__list-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-problems__list-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.p-problems__list-text {
  margin: 0.375rem 0 0;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-problems__list-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-problems__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.75rem;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  background: #d9f7e6;
}

@media screen and (min-width: 768px) {
  .p-problems__icon-wrap {
    width: 12.0625rem;
  }
}

.p-problems__icon-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-qa {
  padding-block: 3.75rem 4.375rem;
  background: var(--color-fv-bg);
}

@media screen and (min-width: 768px) {
  .p-qa {
    padding-block: 3.75rem 4.375rem;
  }
}

.p-qa__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding-inline: 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-qa__inner {
    padding-inline: var(--padding-inner);
    max-width: var(--inner);
  }
}

.p-qa__title {
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.17;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 2.125rem;
}

@media screen and (min-width: 768px) {
  .p-qa__title {
    font-size: 2.25rem;
  }
}

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

@media screen and (min-width: 768px) {
  .p-qa__list {
    gap: 1.25rem;
  }
}

.p-qa__item {
  border-radius: 0.3125rem;
  overflow: hidden;
  background: var(--color-white);
}

.p-qa__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-green);
  padding-inline: 1rem 0.75rem;
  padding-block: 1.5rem;
  border-radius: 0.3125rem;
  pointer-events: none;
  /* アコーディオン復活時はこの行を削除する */
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-white);
  list-style: none;
}

@media screen and (min-width: 768px) {
  .p-qa__question {
    font-weight: var(--fw-bold);
    padding-inline: 2.625rem 1.5rem;
    padding-block: 1.5rem;
    font-size: 1.25rem;
  }
}

.p-qa__question::-webkit-details-marker {
  display: none;
}

.p-qa__icon {
  display: none;
}

.p-qa__answer {
  overflow: hidden;
  background: var(--color-white);
  border-radius: 0 0 0.3125rem 0.3125rem;
}

.p-qa__answer-inner {
  padding: 1.25rem;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-qa__answer-inner {
    padding: 2.6875rem 2.8125rem;
    font-size: 1rem;
  }
}

/* スクショ準拠：ティール→グリーン縦グラデ・白カード・01/03は文左画右、02は画左文右 */
.p-reason {
  padding-block: 3.75rem 3rem;
  background: linear-gradient(90deg, #16D2D2 0%, #37D27E 100%);
  /* 背景の大きな REASON + 手前の白見出し */
}

@media screen and (min-width: 768px) {
  .p-reason {
    padding-block: 5.625rem 4.25rem;
  }
}

.p-reason__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding-inline: 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-reason__inner {
    padding-inline: var(--padding-inner);
    max-width: var(--inner);
  }
}

.p-reason__head {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-reason__head {
    margin-bottom: 3rem;
  }
}

.p-reason__head-en {
  position: absolute;
  top: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--font-futura);
  font-size: 3.625rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #FFFDCF;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.p-reason__head-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .p-reason__head-ja {
    font-size: 2.25rem;
  }
}

.p-reason__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-reason__cards {
    gap: 2.375rem;
  }
}

.p-reason__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.5rem 1.125rem;
  background: var(--color-white);
  border-radius: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-reason__card {
    flex-direction: row;
    align-items: stretch;
    gap: 4.375rem;
    padding: 2.8125rem 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__card--reverse {
    flex-direction: row-reverse;
  }
}

.p-reason__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-reason__card-body {
    flex: 1;
  }
}

.p-reason__card-top {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .p-reason__card-top {
    flex-direction: row;
    align-items: center;
    gap: 1.8125rem;
    margin-bottom: 1.375rem;
  }
}

.p-reason__card-num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-reason__card-num {
    margin-top: 0;
  }
}

.p-reason__card-num-value {
  font-family: var(--font-futura);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-green);
}

@media screen and (min-width: 768px) {
  .p-reason__card-num-value {
    font-size: 3.25rem;
  }
}

.p-reason__card-num-line {
  display: block;
  width: 100%;
  min-width: 2rem;
  height: 0.125rem;
  margin-top: 0.125rem;
  background: var(--color-green);
  border-radius: 0.0625rem;
}

@media screen and (min-width: 768px) {
  .p-reason__card-num-line {
    min-width: 3rem;
  }
}

.p-reason__card-title {
  flex: 1;
  margin: 0;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.45;
  color: var(--color-green);
}

@media screen and (min-width: 768px) {
  .p-reason__card-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
}

.p-reason__card-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.8;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-reason__card-text {
    font-size: 1rem;
  }
}

.p-reason__card-image {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 330.03/254.7;
  object-fit: cover;
  border-radius: 0.625rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-reason__card-image {
    max-width: 20.625rem;
    border-radius: 0.625rem 0.625rem 0.625rem 0;
    align-self: stretch;
    margin-block: -3.6875rem -2.8125rem;
    margin-inline: 0 -3.75rem;
  }
}

.p-reason__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-reason__card--reverse .p-reason__card-image {
    max-width: 20.625rem;
    border-radius: 0.625rem 0.625rem 0 0.625rem;
    align-self: stretch;
    margin-inline: -3.75rem 0;
  }
}

.p-voice {
  padding: 4.375rem 0;
  background: var(--color-fv-bg);
}

@media screen and (min-width: 768px) {
  .p-voice {
    padding: 4.625rem 0 4.375rem;
  }
}

.p-voice__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding-inline: 1.5625rem;
  max-width: 37.5rem;
}

@media screen and (min-width: 768px) {
  .p-voice__inner {
    padding-inline: var(--padding-inner);
    max-width: var(--inner);
  }
}

.p-voice__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em 0.5em;
  text-align: center;
  margin-top: 0;
}

.p-voice__title img {
  padding-block: 0.5rem 0;
}

.p-voice__title img.reverse-icon {
  transform: rotateY(180deg);
}

.p-voice__title-deco {
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

.p-voice__title-body {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-voice__title-body {
    font-size: 2.25rem;
  }
}

.p-voice__title-accent {
  color: var(--color-green);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-voice__title-accent {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.p-voice__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-block-start: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-voice__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
    margin-block-start: 2.1875rem;
  }
}

.p-voice__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.5rem;
  background: var(--color-white);
  border-radius: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-voice__card {
    padding: 2.125rem 2.4375rem;
  }
}

.p-voice__card-media {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 1.25rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #d9d9d9;
}

@media screen and (min-width: 768px) {
  .p-voice__card-media {
    margin-bottom: 1.6875rem;
  }
}

.p-voice__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice__card-text {
  margin-block: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-voice__card-text {
    margin-block: 0 1.0625rem;
    font-size: 1rem;
  }
}

.p-voice__card-meta {
  margin-top: auto;
  text-align: center;
}

.p-voice__card-company {
  margin: 0;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-voice__card-company {
    font-size: 1rem;
  }
}

.p-voice__card-service {
  margin-block-start: 0.25rem;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .p-voice__card-service {
    font-size: 1rem;
  }
}

.u-hidden {
  display: none !important;
  visibility: hidden !important;
}

.u-hidden-pc,
.u-is-sp {
  display: block !important;
}

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

  .u-hidden-pc,
  .u-is-sp {
    display: none !important;
  }
}

.u-hidden-sp,
.u-is-pc {
  display: none !important;
}

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

  .u-hidden-sp,
  .u-is-pc {
    display: block !important;
  }
}

@media (width <=767px) {
  [data-only-device=md] {
    display: none;
  }
}

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

.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
