@charset "UTF-8";
/* ========================================================================================= ^^
    Custom properties
============================================================================================ ^^ */
:root {
  --min-layout-width: 375;
  --max-layout-width: 1440;
  --base-font-size: 16;
  --rem-ratio: calc(1rem / var(--base-font-size));
  --min-ratio: calc(1 / var(--min-layout-width) * 100vw);
  --max-ratio: calc(1 / var(--max-layout-width) * 100vw);
  --white: #fff;
  --black: #000;
  --logo-color: #928d27;
  --section-bg-color: #fcd7a1;
  --font-base-color: #231815;
  --header-bg-color: var(--white);
  --footer-bg-color: #933000;
  --menu-bg-color: #fdede4;
  --menu-border-color: var(--black);
  --menu-en-color: #f08300;
  --menu-seo-color: #221714;
  --main-visual-bg-color: #fcd7a1;
  --concept-title-color: #fcd7a1;
  --equipment-title-color: var(--white);
  --option-title-color: #fcd7a1;
}

/* ========================================================================================= ^^
  KISO style sheet
============================================================================================ ^^ */
/*! kiso.css v1.2.2 | 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%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  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(h1, h2, h3, h4, h5, h6) {
  /* 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;
}

/* ======================================================
//  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, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

: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
  */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  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:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * 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;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  -webkit-text-decoration-line: unset;
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* 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(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) {
  /* 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(:-moz-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(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;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: 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 / 0.3);
}

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

/* ========================================================================================= ^^
  Google fonts
============================================================================================ ^^ */
/* ======================================================================================== ^^
	Typography
=========================================================================================== ^^ */
html {
  font-size: 100%;
}

body {
  width: 100vw;
  height: 100%;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 100%;
  color: #231815;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  overflow-x: hidden;
  counter-reset: number;
}

sup {
  font-size: 2.25vw;
  position: relative;
  top: -2vw;
  left: -0.5vw;
}
@media (min-width: 768px) {
  sup {
    font-size: 0.6923076923vw;
    top: -0.6153846154vw;
    left: -0.1538461538vw;
  }
}
@media (min-width: 1440px) {
  sup {
    font-size: 0.5625rem;
    top: -0.5rem;
    left: -0.125rem;
  }
}

abbr[title] {
  text-decoration: none;
}

a:link {
  color: var(--font-color);
  text-decoration: none;
}
a:visited {
  color: var(--font-color);
  text-decoration: none;
}
a:hover {
  color: var(--font-color);
  text-decoration: none;
}
a:focus {
  color: var(--font-color);
  text-decoration: none;
}

/* ======================================================================================== ^^
	Utilities
============================================================================================ ^^ */
.tel-link,
a[href^="tel:"] {
  pointer-events: all;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tel-link,
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

.is-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .is-pc {
    display: block !important;
  }
}

a {
  transition: all 0.3s linear;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.screen-reader-text {
  clip: rect(0, 0, 1px, 1px);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================================================================================= ^^
  Text transform
============================================================================================ ^^ */
.u-uppercase {
  text-transform: uppercase;
}

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

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

/* ========================================================================================= ^^
	Break
============================================================================================ ^^ */
@media (min-width: 768px) {
  .u-pc-hide-br {
    display: none;
  }
}

@media not all and (min-width: 768px) {
  .u-sp-hide-br {
    display: none;
  }
}

.u-tb-br {
  display: none;
}
@media not all and (min-width: 1440px) {
  .u-tb-br {
    display: inline;
  }
}

/* ========================================================================================= ^^
  Effects
============================================================================================ ^^ */
.js-fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* ========================================================================================= ^^
  Contents
============================================================================================ ^^ */
@media not all and (min-width: 768px) {
  .u-pc-contents {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-sp-contents {
    display: none;
  }
}

/* ========================================================================================= ^^
  Site Header
============================================================================================ ^^ */
.l-site-header {
  width: 100%;
  height: calc(60 * var(--min-ratio));
  padding: 0 calc(10 * var(--min-ratio));
  background-color: var(--header-bg-color);
  position: sticky;
  top: 0;
  z-index: 7000;
}
@media (min-width: 768px) {
  .l-site-header {
    height: calc(90 * var(--max-ratio));
    padding: 0 calc(20 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-site-header {
    height: calc(90 * var(--rem-ratio));
    padding: 0;
  }
}
.l-site-header__inner {
  max-width: calc(1110 * var(--rem-ratio));
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: calc(49 * var(--min-ratio)) 1fr calc(35 * var(--min-ratio));
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .l-site-header__inner {
    grid-template-columns: 6.5765765766% 1fr 37.8378378378% 4.954954955%;
    -moz-column-gap: 3.3333333333%;
    column-gap: 3.3333333333%;
  }
}
@media (min-width: 1440px) {
  .l-site-header__inner {
    grid-template-columns: 6.5765765766% 1fr 34.2342342342% 4.954954955%;
  }
}
.l-site-header__buttons {
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .l-site-header__buttons {
    width: 100%;
    display: flex;
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .l-site-header__buttons .c-button {
    height: calc(50 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-site-header__buttons .c-button {
    height: calc(44 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .l-site-header__buttons .c-button:nth-of-type(1) {
    width: 40.7894736842%;
  }
}
@media (min-width: 768px) {
  .l-site-header__buttons .c-button:nth-of-type(2) {
    width: 55%;
  }
}
.l-site-header .c-menu-button {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .l-site-header .c-menu-button {
    grid-column: 4/5;
  }
}

/* ========================================================================================= ^^
  Site footer
============================================================================================ ^^ */
.l-site-footer {
  padding: calc(15 * var(--min-ratio)) calc(20 * var(--min-ratio)) calc(13 * var(--min-ratio));
  background-color: var(--footer-bg-color);
}
@media (min-width: 768px) {
  .l-site-footer {
    padding: calc(47 * var(--max-ratio)) calc(20 * var(--max-ratio)) calc(22 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-site-footer {
    padding: calc(47 * var(--rem-ratio)) calc(43 * var(--rem-ratio)) calc(22 * var(--rem-ratio));
  }
}
.l-site-footer__inner {
  max-width: calc(1354 * var(--rem-ratio));
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.l-site-footer .c-footer-contents {
  margin-bottom: calc(40 * var(--min-ratio));
}
@media (min-width: 768px) {
  .l-site-footer .c-footer-contents {
    margin-bottom: calc(59 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-site-footer .c-footer-contents {
    margin-bottom: calc(59 * var(--rem-ratio));
  }
}
.l-site-footer .c-footer-logo {
  margin-bottom: calc(25 * var(--min-ratio));
}
@media (min-width: 768px) {
  .l-site-footer .c-footer-logo {
    margin-bottom: calc(44 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-site-footer .c-footer-logo {
    margin-bottom: calc(44 * var(--rem-ratio));
  }
}
.l-site-footer .c-company-name {
  margin-bottom: calc(14 * var(--min-ratio));
}
@media (min-width: 768px) {
  .l-site-footer .c-company-name {
    margin-bottom: calc(17 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-site-footer .c-company-name {
    margin-bottom: calc(17 * var(--rem-ratio));
  }
}
.l-site-footer .c-copyright {
  color: var(--white);
}

/* ========================================================================================= ^^
  Section
============================================================================================ ^^ */
.l-section {
  padding: 0 calc(15 * var(--min-ratio));
  position: relative;
}
@media (min-width: 768px) {
  .l-section {
    padding: 0 calc(20 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .l-section {
    padding: 0;
  }
}
.l-section .c-section-title {
  transform: translateY(calc(-100% + 2px));
}
@media (min-width: 768px) {
  .l-section .c-section-title {
    transform: translateY(calc(-100% + 3px));
  }
}

/* ========================================================================================= ^^
  Site logo
============================================================================================ ^^ */
.c-site-logo {
  width: calc(49 * var(--min-ratio));
  margin: 0;
}
@media (min-width: 768px) {
  .c-site-logo {
    width: calc(73 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-logo {
    width: calc(73 * var(--rem-ratio));
  }
}
.c-site-logo__image {
  margin: 0;
  fill: var(--logo-color);
}

.c-footer-logo {
  width: calc(65 * var(--min-ratio));
  margin: 0;
}
@media (min-width: 768px) {
  .c-footer-logo {
    width: calc(73 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-footer-logo {
    width: calc(73 * var(--rem-ratio));
  }
}
.c-footer-logo__image {
  margin: 0;
  fill: var(--white);
}

/* ========================================================================================= ^^
  Buttons
============================================================================================ ^^ */
.c-button {
  border-radius: calc(11 * var(--min-ratio));
  overflow: hidden;
  filter: drop-shadow(1.6px 1.6px 1.6px rgba(0, 0, 0, 0.5));
}
@media (min-width: 768px) {
  .c-button {
    border-radius: calc(11 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-button {
    border-radius: calc(11 * var(--rem-ratio));
  }
}
.c-button__link {
  width: 100%;
  height: 100%;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .c-button__link {
    font-size: clamp(0.625rem, 0.482rem + 0.3vw, 0.75rem);
  }
}
.c-button__link::after {
  width: calc(12 * var(--min-ratio));
  height: calc(12 * var(--min-ratio));
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  content: " ";
  display: block;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  right: calc(2 * var(--min-ratio));
  top: 50%;
}
@media (min-width: 768px) {
  .c-button__link::after {
    width: calc(12 * var(--max-ratio));
    height: calc(12 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-button__link::after {
    width: calc(12 * var(--rem-ratio));
    height: calc(12 * var(--rem-ratio));
  }
}
.c-button--orange .c-button__link {
  background: linear-gradient(180deg, rgb(255, 206, 0) 0.32%, rgb(255, 133, 0) 100%);
}
.c-button--orange .c-button__link:link {
  color: var(--white);
}
.c-button--orange .c-button__link:visited {
  color: var(--white);
}
.c-button--orange .c-button__link:hover {
  color: var(--white);
}
.c-button--orange .c-button__link:focus {
  color: var(--white);
}
.c-button--green .c-button__link {
  background: linear-gradient(180deg, rgb(141, 197, 86) 0.32%, rgb(0, 160, 61) 100%);
}
.c-button--green .c-button__link:link {
  color: var(--white);
}
.c-button--green .c-button__link:visited {
  color: var(--white);
}
.c-button--green .c-button__link:hover {
  color: var(--white);
}
.c-button--green .c-button__link:focus {
  color: var(--white);
}

.c-button-round {
  border-radius: calc(infinity * 1px);
  overflow: hidden;
  filter: drop-shadow(1.6px 1.6px 1.6px rgba(0, 0, 0, 0.5));
}
.c-button-round__link {
  width: 100%;
  height: 100%;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 1.034375;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-button-round__link::after {
  width: calc(12 * var(--min-ratio));
  height: calc(12 * var(--min-ratio));
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  content: " ";
  display: block;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  right: calc(15 * var(--min-ratio));
  top: 50%;
}
@media (min-width: 768px) {
  .c-button-round__link::after {
    width: calc(12 * var(--max-ratio));
    height: calc(12 * var(--max-ratio));
    right: calc(15 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-button-round__link::after {
    width: calc(12 * var(--rem-ratio));
    height: calc(12 * var(--rem-ratio));
    right: calc(15 * var(--rem-ratio));
  }
}
.c-button-round__inner {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: calc(4 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-button-round__inner {
    row-gap: calc(4 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-button-round__inner {
    row-gap: calc(4 * var(--rem-ratio));
  }
}
.c-button-round__inner span {
  width: calc(80 * var(--min-ratio));
  height: calc(17 * var(--min-ratio));
  border-radius: calc(6 * var(--min-ratio));
  background-color: var(--white);
  font-size: clamp(0.768rem, 0.768rem + 0vw, 0.768rem);
  color: #ed6c00;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .c-button-round__inner span {
    width: calc(130 * var(--max-ratio));
    height: calc(24 * var(--max-ratio));
    font-size: clamp(0.768rem, 0.768rem + 0vw, 0.768rem);
  }
}
@media (min-width: 1440px) {
  .c-button-round__inner span {
    width: calc(80 * var(--rem-ratio));
    height: calc(17 * var(--rem-ratio));
  }
}
.c-button-round--orange {
  border: 2px solid #ffcc00;
}
.c-button-round--orange .c-button-round__link {
  background: linear-gradient(180deg, rgb(255, 206, 0) 0.32%, rgb(255, 133, 0) 100%);
}
.c-button-round--orange .c-button-round__link:link {
  color: var(--white);
}
.c-button-round--orange .c-button-round__link:visited {
  color: var(--white);
}
.c-button-round--orange .c-button-round__link:hover {
  color: var(--white);
}
.c-button-round--orange .c-button-round__link:focus {
  color: var(--white);
}
.c-button-round--green {
  border: 2px solid #8dc556;
}
.c-button-round--green .c-button-round__link {
  background: linear-gradient(180deg, rgb(141, 197, 86) 0.32%, rgb(0, 160, 61) 100%);
}
.c-button-round--green .c-button-round__link:link {
  color: var(--white);
}
.c-button-round--green .c-button-round__link:visited {
  color: var(--white);
}
.c-button-round--green .c-button-round__link:hover {
  color: var(--white);
}
.c-button-round--green .c-button-round__link:focus {
  color: var(--white);
}

/* ========================================================================================= ^^
  Menu button
============================================================================================ ^^ */
.c-menu-button {
  padding: 0;
  border: none;
  cursor: pointer;
}

.c-menu-close {
  padding: 0;
  border: none;
  cursor: pointer;
}

/* ========================================================================================= ^^
  Footer contents
============================================================================================ ^^ */
.c-footer-contents {
  width: 100%;
  color: var(--white);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
}
@media (min-width: 768px) {
  .c-footer-contents {
    grid-template-columns: 41.8020679468% 1fr;
    grid-template-rows: auto;
  }
}
.c-footer-contents__item:nth-of-type(1) {
  padding-bottom: calc(25 * var(--min-ratio));
  border-bottom: 1px solid var(--white);
}
@media (min-width: 768px) {
  .c-footer-contents__item:nth-of-type(1) {
    padding: 0 calc(10 * var(--max-ratio)) 0 0;
    border-right: 1px solid var(--white);
    border-bottom: none;
  }
}
@media (min-width: 1440px) {
  .c-footer-contents__item:nth-of-type(1) {
    padding-right: calc(10 * var(--rem-ratio));
  }
}
.c-footer-contents__item:nth-of-type(1) .c-address {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
  row-gap: calc(15 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-footer-contents__item:nth-of-type(1) .c-address {
    row-gap: calc(22 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-footer-contents__item:nth-of-type(1) .c-address {
    row-gap: calc(22 * var(--rem-ratio));
  }
}
.c-footer-contents__item:nth-of-type(2) {
  padding-top: calc(20 * var(--min-ratio));
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
}
@media (min-width: 768px) {
  .c-footer-contents__item:nth-of-type(2) {
    padding: 0 0 0 calc(20 * var(--max-ratio));
    row-gap: calc(19 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-footer-contents__item:nth-of-type(2) {
    padding-left: calc(20 * var(--rem-ratio));
    row-gap: calc(19 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Company name
============================================================================================ ^^ */
.c-company-name {
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  line-height: 1.365;
}
@media (min-width: 768px) {
  .c-company-name {
    font-size: clamp(1rem, 0.714rem + 0.6vw, 1.25rem);
    line-height: 1.3;
  }
}

/* ========================================================================================= ^^
  Address
============================================================================================ ^^ */
.c-address {
  font-size: clamp(0.625rem, 0.559rem + 0.28vw, 0.813rem);
  line-height: 1.68;
}
@media (min-width: 768px) {
  .c-address {
    font-size: clamp(0.625rem, 0.411rem + 0.45vw, 0.813rem);
    line-height: 1.5384615385;
  }
}

/* ========================================================================================= ^^
  Registration number list
============================================================================================ ^^ */
.c-registration-number-list {
  font-size: clamp(0.625rem, 0.559rem + 0.28vw, 0.813rem);
  line-height: 1.512;
}
@media (min-width: 768px) {
  .c-registration-number-list {
    font-size: clamp(0.625rem, 0.411rem + 0.45vw, 0.813rem);
    line-height: 1.3846153846;
  }
}

/* ========================================================================================= ^^
  Copyright
============================================================================================ ^^ */
.c-copyright {
  font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  line-height: 2;
}
@media (min-width: 768px) {
  .c-copyright {
    font-size: clamp(0.563rem, 0.563rem + 0vw, 0.563rem);
    line-height: 2;
  }
}

/* ========================================================================================= ^^
  Site navigation
============================================================================================ ^^ */
.c-site-navigation {
  max-width: calc(400 * var(--rem-ratio));
  width: 100%;
  padding: calc(34 * var(--min-ratio)) calc(30 * var(--min-ratio)) calc(24 * var(--min-ratio));
  background-color: var(--menu-bg-color);
  border: 1px solid var(--menu-border-color);
  position: absolute;
  top: 100%;
  right: 0;
  transition: all 0.3s;
  transform-origin: 100% 0;
  transform: scale(0);
}
@media (min-width: 768px) {
  .c-site-navigation {
    padding: calc(34 * var(--max-ratio)) calc(30 * var(--max-ratio)) calc(24 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation {
    padding: calc(34 * var(--rem-ratio)) calc(30 * var(--rem-ratio)) calc(24 * var(--rem-ratio));
  }
}
.is-menu-open .c-site-navigation {
  transform: scale(1);
}
.c-site-navigation__menu {
  margin-bottom: calc(20 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-site-navigation__menu {
    margin-bottom: calc(20 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation__menu {
    margin-bottom: calc(20 * var(--rem-ratio));
  }
}
.c-site-navigation__menu-item {
  height: calc(85 * var(--min-ratio));
  border-bottom: 1px solid var(--menu-seo-color);
}
@media (min-width: 768px) {
  .c-site-navigation__menu-item {
    height: calc(85 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation__menu-item {
    height: calc(85 * var(--rem-ratio));
  }
}
.c-site-navigation__menu-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: calc(5 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-site-navigation__menu-link {
    row-gap: calc(5 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation__menu-link {
    row-gap: calc(5 * var(--rem-ratio));
  }
}
.c-site-navigation__menu-link .en {
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  color: var(--menu-en-color);
  line-height: 1.2084592145;
  font-weight: 800;
}
.c-site-navigation__menu-link .jpn {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 0.9667673716;
  font-weight: 600;
}
.c-site-navigation .c-menu-close {
  width: calc(35 * var(--min-ratio));
  position: absolute;
  top: calc(23 * var(--min-ratio));
  right: calc(22 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-site-navigation .c-menu-close {
    width: calc(55 * var(--max-ratio));
    top: calc(23 * var(--max-ratio));
    right: calc(22 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation .c-menu-close {
    width: calc(55 * var(--rem-ratio));
    top: calc(23 * var(--rem-ratio));
    right: calc(22 * var(--rem-ratio));
  }
}
.c-site-navigation .c-button-round {
  height: calc(66 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-site-navigation .c-button-round {
    height: calc(66 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation .c-button-round {
    height: calc(66 * var(--rem-ratio));
  }
}
.c-site-navigation .c-button-round--orange {
  margin-bottom: calc(30 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-site-navigation .c-button-round--orange {
    margin-bottom: calc(30 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation .c-button-round--orange {
    margin-bottom: calc(30 * var(--rem-ratio));
  }
}
.c-site-navigation .c-button-round--green {
  margin-bottom: calc(27 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-site-navigation .c-button-round--green {
    margin-bottom: calc(27 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation .c-button-round--green {
    margin-bottom: calc(27 * var(--rem-ratio));
  }
}
.c-site-navigation .c-site-logo {
  width: calc(95 * var(--min-ratio));
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-site-navigation .c-site-logo {
    width: calc(95 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-site-navigation .c-site-logo {
    width: calc(96 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Main visual
============================================================================================ ^^ */
.c-main-visual {
  width: 100%;
  height: calc(485 * var(--min-ratio));
  padding-top: calc(291 * var(--min-ratio));
  background: var(--main-visual-bg-color) url(../img/mv_sp.webp) no-repeat 50% 0/100% auto;
}
@media (min-width: 768px) {
  .c-main-visual {
    height: calc(930 * var(--max-ratio));
    padding-top: calc(566 * var(--max-ratio));
    background: var(--main-visual-bg-color) url(../img/mv_pc.webp) no-repeat 50% 0/100% auto;
  }
}
@media (min-width: 1440px) {
  .c-main-visual {
    height: calc(930 * var(--rem-ratio));
    padding-top: calc(566 * var(--rem-ratio));
    background-size: auto calc(648.5 * var(--rem-ratio));
  }
}
.c-main-visual__title {
  width: calc(355 * var(--min-ratio));
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .c-main-visual__title {
    width: calc(1129 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-main-visual__title {
    width: calc(1129 * var(--rem-ratio));
  }
}
@keyframes btn_animation {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-main-visual__title-bn {
  width: calc(110 * var(--min-ratio));
  padding: calc(3 * var(--min-ratio));
  border-radius: calc(infinity * 1px);
  position: absolute;
  top: calc(-123 * var(--min-ratio));
  right: calc(-5 * var(--min-ratio));
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-main-visual__title-bn {
    width: calc(204 * var(--max-ratio));
    padding: calc(7 * var(--max-ratio));
    top: calc(-10 * var(--max-ratio));
    right: 0;
  }
}
@media (min-width: 1440px) {
  .c-main-visual__title-bn {
    width: calc(204 * var(--rem-ratio));
    padding: calc(7 * var(--rem-ratio));
    top: calc(-10 * var(--rem-ratio));
  }
}
.c-main-visual__title-bn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}
.c-main-visual__banners {
  width: calc(355 * var(--min-ratio));
  margin: calc(5 * var(--min-ratio)) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 49.5774647887%);
  -moz-column-gap: 0.8450704225%;
  column-gap: 0.8450704225%;
  align-items: end;
}
@media (min-width: 768px) {
  .c-main-visual__banners {
    width: calc(755 * var(--max-ratio));
    margin-top: calc(-13 * var(--max-ratio));
    grid-template-columns: repeat(2, 47.6821192053%);
    -moz-column-gap: 4.6357615894%;
    column-gap: 4.6357615894%;
  }
}
@media (min-width: 1440px) {
  .c-main-visual__banners {
    width: calc(755 * var(--rem-ratio));
    margin-top: calc(-13 * var(--rem-ratio));
  }
}
.c-main-visual + .c-note {
  max-width: calc(1126 * var(--rem-ratio));
  width: 100%;
  padding: calc(12 * var(--min-ratio)) calc(15 * var(--min-ratio)) calc(22 * var(--min-ratio));
  margin: 0 auto;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .c-main-visual + .c-note {
    width: 80%;
    padding: calc(18 * var(--max-ratio)) calc(15 * var(--max-ratio)) calc(34 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-main-visual + .c-note {
    width: 100%;
    padding: calc(18 * var(--rem-ratio)) calc(15 * var(--rem-ratio)) calc(34 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Note
============================================================================================ ^^ */
.c-note {
  font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  line-height: 1.3;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  .c-note {
    font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  }
}

/* ========================================================================================= ^^
  Concept menu
============================================================================================ ^^ */
.c-concept-menu {
  max-width: calc(1122 * var(--rem-ratio));
  width: calc(328 * var(--min-ratio));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 48.1707317073%);
  grid-template-rows: repeat(2, calc(79 * var(--min-ratio)));
  -moz-column-gap: 3.6585365854%;
  column-gap: 3.6585365854%;
  row-gap: calc(5 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-menu {
    width: 100%;
    grid-template-columns: repeat(4, 23.6185383244%);
    grid-template-rows: calc(134 * var(--max-ratio));
    -moz-column-gap: 1.8419518717%;
    column-gap: 1.8419518717%;
    row-gap: unset;
  }
}
@media (min-width: 1440px) {
  .c-concept-menu {
    grid-template-rows: calc(134 * var(--rem-ratio));
  }
}
.c-concept-menu__item {
  background: url(../img/bg-label_pc.webp) no-repeat 50% 0/100% auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  aspect-ratio: 1/0.5;
}
@media (min-width: 768px) {
  .c-concept-menu__item {
    padding-top: calc(5 * var(--max-ratio));
    row-gap: calc(10 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-menu__item {
    padding-top: calc(5 * var(--rem-ratio));
    row-gap: calc(10 * var(--rem-ratio));
  }
}
.c-concept-menu .en {
  margin-bottom: calc(-3 * var(--min-ratio));
  font-size: clamp(1.23rem, 0.936rem + 1.25vw, 2.064rem);
  color: #482c1b;
  line-height: 0.8948170732;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-concept-menu .en {
    font-size: clamp(1.23rem, 0.277rem + 1.99vw, 2.064rem);
    transform: translateY(calc(-7 * var(--max-ratio)));
  }
}
@media (min-width: 900px) {
  .c-concept-menu .en {
    transform: none;
  }
}
.c-concept-menu .en::first-letter {
  font-size: clamp(1.619rem, 1.233rem + 1.65vw, 2.716rem);
  color: #eba51e;
  line-height: 1.4707552527;
}
@media (min-width: 768px) {
  .c-concept-menu .en::first-letter {
    font-size: clamp(1.619rem, 0.365rem + 2.61vw, 2.716rem);
  }
}
.c-concept-menu .jpn {
  font-size: clamp(0.583rem, 0.443rem + 0.59vw, 0.978rem);
  line-height: 1.5557939914;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-concept-menu .jpn {
    font-size: clamp(0.583rem, 0.131rem + 0.94vw, 0.978rem);
    transform: translateY(calc(-7 * var(--max-ratio)));
  }
}
@media (min-width: 900px) {
  .c-concept-menu .jpn {
    transform: none;
  }
}

/* ========================================================================================= ^^
  Concept block
============================================================================================ ^^ */
.c-concept-block {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  padding: calc(18 * var(--min-ratio));
  margin: 0 auto calc(59 * var(--min-ratio));
  background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .c-concept-block {
    padding: calc(30 * var(--max-ratio)) calc(23.5 * var(--max-ratio));
    margin-bottom: calc(100 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block {
    padding: calc(30 * var(--rem-ratio)) calc(23.5 * var(--rem-ratio));
    margin-bottom: calc(100 * var(--rem-ratio));
  }
}
.c-concept-block__title {
  margin-bottom: calc(4 * var(--min-ratio));
  font-size: clamp(1.137rem, 0.793rem + 1.47vw, 2.114rem);
  line-height: 1.5805387576;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-concept-block__title {
    margin-bottom: calc(13 * var(--max-ratio));
    font-size: clamp(1.137rem, 0.02rem + 2.33vw, 2.114rem);
    line-height: 0.8604376109;
  }
}
@media (min-width: 1440px) {
  .c-concept-block__title {
    margin-bottom: calc(13 * var(--rem-ratio));
  }
}
.c-concept-block__title em {
  font-size: clamp(1.39rem, 0.97rem + 1.79vw, 2.583rem);
  color: #eba51e;
  line-height: 1.2927158273;
}
@media (min-width: 768px) {
  .c-concept-block__title em {
    font-size: clamp(1.39rem, 0.026rem + 2.84vw, 2.583rem);
    line-height: 0.7040890394;
  }
}
.c-concept-block__text {
  margin-bottom: calc(17 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .c-concept-block__text {
    margin-bottom: calc(27 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
    line-height: 1.75;
  }
}
@media (min-width: 1440px) {
  .c-concept-block__text {
    margin-bottom: calc(27 * var(--rem-ratio));
  }
}
.c-concept-block__inner {
  display: grid;
  grid-template-columns: 100%;
  row-gap: calc(24 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-block__inner {
    grid-template-columns: repeat(3, 32.0930232558%);
    -moz-column-gap: 1.8604651163%;
    column-gap: 1.8604651163%;
    row-gap: calc(20 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__inner {
    row-gap: calc(20 * var(--rem-ratio));
  }
}
.c-concept-block__item {
  width: 100%;
  padding: calc(10 * var(--min-ratio));
  background: linear-gradient(to bottom, #efc448 0%, #efc448 calc(32 * var(--min-ratio)), #fff calc(32 * var(--min-ratio)), #fff 100%);
}
@media (min-width: 768px) {
  .c-concept-block__item {
    padding: calc(16 * var(--max-ratio));
    background: linear-gradient(to bottom, #efc448 0%, #efc448 calc(36 * var(--max-ratio)), #fff calc(36 * var(--max-ratio)), #fff 100%);
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item {
    padding: calc(16 * var(--rem-ratio));
    background: linear-gradient(to bottom, #efc448 0%, #efc448 calc(36 * var(--rem-ratio)), #fff calc(36 * var(--rem-ratio)), #fff 100%);
  }
}
@media (min-width: 768px) {
  .c-concept-block__item:nth-of-type(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .c-concept-block__item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .c-concept-block__item:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .c-concept-block__item:nth-of-type(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
.c-concept-block__item .c-title {
  width: calc(148 * var(--min-ratio));
  height: calc(50 * var(--min-ratio));
  padding-top: calc(4 * var(--min-ratio));
  margin: 0 auto calc(19 * var(--min-ratio));
  background: url(../img/bg-title_sp.webp) no-repeat 0 0/100% auto;
  font-size: clamp(1.137rem, 1.079rem + 0.25vw, 1.301rem);
  color: #482c1b;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .c-concept-block__item .c-title {
    width: calc(167 * var(--max-ratio));
    height: calc(54 * var(--max-ratio));
    padding-top: 0;
    margin-bottom: calc(22 * var(--max-ratio));
    background: url(../img/bg-title_pc.webp) no-repeat 0 0/100% auto;
    font-size: clamp(1.137rem, 0.949rem + 0.39vw, 1.301rem);
    line-height: 0.8948126801;
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item .c-title {
    width: calc(167 * var(--rem-ratio));
    height: calc(54 * var(--rem-ratio));
    margin-bottom: calc(22 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .c-concept-block__item .c-title span {
    transform: translateY(calc(-8 * var(--max-ratio)));
  }
}
@media (min-width: 900px) {
  .c-concept-block__item .c-title span {
    transform: none;
  }
}
.c-concept-block__item .c-title span::first-letter {
  font-size: clamp(1.137rem, 0.923rem + 0.91vw, 1.746rem);
  color: #eba51e;
}
@media (min-width: 768px) {
  .c-concept-block__item .c-title span::first-letter {
    font-size: clamp(1.137rem, 0.441rem + 1.45vw, 1.746rem);
    line-height: 1.499194847;
  }
}
.c-concept-block__item-text {
  margin-bottom: calc(18 * var(--min-ratio));
  font-size: clamp(1.625rem, 1.453rem + 0.73vw, 2.114rem);
  line-height: 1.3461538462;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .c-concept-block__item-text {
    margin-bottom: calc(60 * var(--max-ratio));
    font-size: clamp(1.625rem, 1.066rem + 1.16vw, 2.114rem);
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item-text {
    margin-bottom: calc(60 * var(--rem-ratio));
  }
}
.c-concept-block__item-text span {
  color: #eba51e;
}
.c-concept-block__item .c-concept-box {
  padding-bottom: calc(30 * var(--min-ratio));
  margin-bottom: calc(20 * var(--min-ratio));
  border-bottom: 2px dotted #3e3a39;
}
@media (min-width: 768px) {
  .c-concept-block__item .c-concept-box {
    padding-bottom: calc(14 * var(--max-ratio));
    margin-bottom: calc(10 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item .c-concept-box {
    padding-bottom: calc(14 * var(--rem-ratio));
    margin-bottom: calc(10 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .c-concept-block__item .c-concept-box.save01 {
    margin-bottom: calc(38 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item .c-concept-box.save01 {
    margin-bottom: calc(38 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .c-concept-block__item .c-concept-box.save02 {
    margin-bottom: calc(38 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item .c-concept-box.save02 {
    margin-bottom: calc(38 * var(--rem-ratio));
  }
}
.c-concept-block__item .c-concept-box.save03 {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .c-concept-block__item.save {
    padding-bottom: calc(50 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item.save {
    padding-bottom: calc(50 * var(--rem-ratio));
  }
}
.c-concept-block__item.save .c-concept-box__title {
  margin-bottom: calc(15 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-block__item.save .c-concept-box__title {
    margin-bottom: calc(19 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item.save .c-concept-box__title {
    margin-bottom: calc(19 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .c-concept-block__item.save .c-concept-box__text {
    margin-bottom: 0;
  }
}
.c-concept-block__item.save .c-concept-box__text .small {
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-concept-block__item.save .c-concept-box__text .small {
    margin-top: calc(11 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item.save .c-concept-box__text .small {
    margin-top: calc(11 * var(--rem-ratio));
  }
}
.c-concept-block__item.simple .c-concept-box__title {
  margin-bottom: calc(8 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-block__item.simple .c-concept-box__title {
    margin-bottom: calc(16 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item.simple .c-concept-box__title {
    margin-bottom: calc(16 * var(--rem-ratio));
  }
}
.c-concept-block__item.simple .c-concept-box__image {
  margin-bottom: calc(16 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-block__item.simple .c-concept-box__image {
    margin-bottom: calc(13 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item.simple .c-concept-box__image {
    margin-bottom: calc(13 * var(--rem-ratio));
  }
}
.c-concept-block__item.simple .c-concept-box__text p + p {
  margin-top: calc(9 * var(--min-ratio));
  font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  line-height: 1.2;
  font-weight: 500;
  text-align: right;
}
@media (min-width: 768px) {
  .c-concept-block__item.simple .c-concept-box__text p + p {
    margin-top: calc(17 * var(--max-ratio));
    font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  }
}
@media (min-width: 1440px) {
  .c-concept-block__item.simple .c-concept-box__text p + p {
    margin-top: calc(17 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Concept box
============================================================================================ ^^ */
.c-concept-box {
  display: flex;
  flex-direction: column;
}
.c-concept-box__title {
  margin-bottom: calc(4 * var(--min-ratio));
  font-size: clamp(1.25rem, 0.946rem + 1.3vw, 2.114rem);
  line-height: 1.5;
  font-weight: 600;
  order: 1;
}
@media (min-width: 768px) {
  .c-concept-box__title {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 0.263rem + 2.06vw, 2.114rem);
    line-height: 1.478415139;
  }
}
.c-concept-box__title span {
  color: #eba51e;
}
.c-concept-box__text {
  margin-bottom: calc(12 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.5714285714;
  order: 2;
}
@media (min-width: 768px) {
  .c-concept-box__text {
    margin-bottom: 0;
    font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
    line-height: 1.75;
  }
}
.c-concept-box__text .small {
  font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  line-height: 2.2;
}
@media (min-width: 768px) {
  .c-concept-box__text .small {
    font-size: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  }
}
.c-concept-box__image {
  order: 3;
}
.c-concept-box--reverse-image .c-concept-box__text {
  order: 3;
}
.c-concept-box--reverse-image .c-concept-box__image {
  order: 2;
}
.c-concept-box--narrow .c-concept-box__title {
  font-size: clamp(1.273rem, 1.214rem + 0.25vw, 1.438rem);
  line-height: 1.304518664;
}
@media (min-width: 768px) {
  .c-concept-box--narrow .c-concept-box__title {
    font-size: clamp(1.273rem, 1.084rem + 0.39vw, 1.438rem);
    line-height: 1.3043478261;
  }
}
.c-concept-box--narrow .c-concept-box__text {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .c-concept-box--narrow .c-concept-box__text {
    font-size: clamp(0.875rem, 0.732rem + 0.3vw, 1rem);
    line-height: 1.625;
  }
}
.c-concept-box--right-image {
  display: grid;
  grid-template-columns: 50.7462686567% 46.6417910448%;
  -moz-column-gap: 2.6119402985%;
  column-gap: 2.6119402985%;
  row-gap: calc(8 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-box--right-image {
    row-gap: calc(10 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-box--right-image {
    row-gap: calc(10 * var(--rem-ratio));
  }
}
.c-concept-box--right-image .c-concept-box__title {
  grid-column: 1/3;
  grid-row: 1/2;
}
.c-concept-box--right-image .c-concept-box__text {
  grid-column: 1/2;
  grid-row: 2/3;
}
.c-concept-box--right-image .c-concept-box__image {
  grid-column: 2/3;
  grid-row: 2/3;
}
.c-concept-box--has-number {
  max-width: calc(898 * var(--rem-ratio));
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.c-concept-box--has-number::before {
  width: calc(24 * var(--min-ratio));
  height: calc(24 * var(--min-ratio));
  background-color: #eba51e;
  font-size: clamp(1.094rem, 0.929rem + 0.7vw, 1.563rem);
  color: var(--white);
  line-height: 1;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .c-concept-box--has-number::before {
    width: calc(46 * var(--max-ratio));
    height: calc(46 * var(--max-ratio));
    font-size: clamp(1.094rem, 0.558rem + 1.12vw, 1.563rem);
    top: calc(7 * var(--max-ratio));
  }
}
@media (min-width: 900px) {
  .c-concept-box--has-number::before {
    width: calc(34 * var(--max-ratio));
    height: calc(34 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-box--has-number::before {
    width: calc(34 * var(--rem-ratio));
    height: calc(34 * var(--rem-ratio));
    top: calc(7 * var(--rem-ratio));
  }
}
.c-concept-box--has-number .c-concept-box__title {
  padding-left: calc(32 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-box--has-number .c-concept-box__title {
    padding-left: calc(57 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-box--has-number .c-concept-box__title {
    padding-left: calc(57 * var(--rem-ratio));
  }
}
.c-concept-box--has-number .c-concept-box__text {
  padding-left: calc(32 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-concept-box--has-number .c-concept-box__text {
    padding-left: calc(57 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-concept-box--has-number .c-concept-box__text {
    padding-left: calc(57 * var(--rem-ratio));
  }
}
.c-concept-box--pc-right-image {
  display: grid;
}
@media (min-width: 768px) {
  .c-concept-box--pc-right-image {
    grid-template-columns: 53.8888888889% 44.4444444444%;
    -moz-column-gap: 1.6666666667%;
    column-gap: 1.6666666667%;
  }
}
@media (min-width: 768px) {
  .c-concept-box--pc-right-image .c-concept-box__title {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .c-concept-box--pc-right-image .c-concept-box__text {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .c-concept-box--pc-right-image .c-concept-box__image {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

/* ========================================================================================= ^^
  Equipment block
============================================================================================ ^^ */
.c-equipment-block {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  padding: calc(16 * var(--min-ratio));
  margin: 0 auto calc(34 * var(--min-ratio));
  background-color: #fcd7a1;
}
@media (min-width: 768px) {
  .c-equipment-block {
    padding: calc(15 * var(--max-ratio)) calc(23.5 * var(--max-ratio)) calc(37 * var(--max-ratio));
    margin-bottom: calc(40 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-equipment-block {
    padding: calc(15 * var(--rem-ratio)) calc(23.5 * var(--rem-ratio)) calc(37 * var(--rem-ratio));
    margin-bottom: calc(40 * var(--rem-ratio));
  }
}
.c-equipment-block + .c-equipment-block {
  margin-bottom: calc(21 * var(--min-ratio));
}
.c-equipment-block__title {
  height: calc(26 * var(--min-ratio));
  padding: 0 calc(20 * var(--min-ratio));
  margin-bottom: calc(8 * var(--min-ratio));
  border-radius: calc(10 * var(--min-ratio));
  background-color: #eebf47;
  font-size: clamp(1.126rem, 0.972rem + 0.66vw, 1.563rem);
  line-height: 1.7995558023;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .c-equipment-block__title {
    height: calc(36 * var(--max-ratio));
    padding: 0 calc(20 * var(--max-ratio));
    margin-bottom: calc(14 * var(--max-ratio));
    border-radius: calc(10 * var(--max-ratio));
    font-size: clamp(1.126rem, 0.626rem + 1.04vw, 1.563rem);
    line-height: 1.8;
  }
}
@media (min-width: 1440px) {
  .c-equipment-block__title {
    height: calc(36 * var(--rem-ratio));
    padding: 0 calc(20 * var(--rem-ratio));
    margin-bottom: calc(14 * var(--rem-ratio));
    border-radius: calc(10 * var(--rem-ratio));
  }
}
.c-equipment-block__inner {
  display: grid;
}
@media (min-width: 768px) {
  .c-equipment-block__inner {
    grid-template-columns: repeat(3, 32.0930232558%);
    -moz-column-gap: 1.8604651163%;
    column-gap: 1.8604651163%;
    row-gap: calc(20 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-equipment-block__inner {
    row-gap: calc(20 * var(--rem-ratio));
  }
}
@media not all and (min-width: 768px) {
  .c-equipment-block__inner .c-equipment-box:not(.c-equipment-box--title-only):not(.c-equipment-box--other) {
    margin-bottom: calc(20 * var(--min-ratio));
  }
}
@media not all and (min-width: 768px) {
  .c-equipment-block__inner .c-equipment-box:not(.c-equipment-box--title-only):not(.c-equipment-box--other).equipment03 {
    margin-bottom: calc(32 * var(--min-ratio));
  }
}
.c-equipment-block__inner .c-equipment-box--title-only {
  margin-bottom: calc(16 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-equipment-block__inner .c-equipment-box--title-only {
    margin-bottom: 0;
  }
}
.c-equipment-block__inner .c-equipment-box--title-only.equipment10 {
  margin-bottom: calc(9 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-equipment-block__inner .c-equipment-box--title-only.equipment10 {
    margin-bottom: 0;
  }
}

/* ========================================================================================= ^^
  Equipment box
============================================================================================ ^^ */
.c-equipment-box {
  padding: calc(30 * var(--min-ratio)) calc(16 * var(--min-ratio)) calc(23 * var(--min-ratio));
  background: linear-gradient(to bottom, #efc448 0%, #efc448 calc(7 * var(--min-ratio)), #fff calc(7 * var(--min-ratio)), #fff 100%);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-equipment-box {
    padding: calc(35 * var(--max-ratio)) calc(23 * var(--max-ratio));
    background: linear-gradient(to bottom, #efc448 0%, #efc448 calc(8 * var(--max-ratio)), #fff calc(8 * var(--max-ratio)), #fff 100%);
  }
}
@media (min-width: 1440px) {
  .c-equipment-box {
    padding: calc(35 * var(--rem-ratio)) calc(23 * var(--rem-ratio));
    background: linear-gradient(to bottom, #efc448 0%, #efc448 calc(8 * var(--rem-ratio)), #fff calc(8 * var(--rem-ratio)), #fff 100%);
  }
}
.c-equipment-box__title {
  margin-bottom: calc(4 * var(--min-ratio));
  font-size: clamp(1.294rem, 1.244rem + 0.22vw, 1.438rem);
  line-height: 1.3042008691;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-equipment-box__title {
    margin-bottom: calc(5 * var(--max-ratio));
    font-size: clamp(1rem, 0.5rem + 1.04vw, 1.438rem);
    line-height: 1.3043478261;
  }
}
@media (min-width: 1440px) {
  .c-equipment-box__title {
    margin-bottom: calc(5 * var(--rem-ratio));
  }
}
.c-equipment-box__title span {
  font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .c-equipment-box__title span {
    font-size: clamp(0.625rem, 0.339rem + 0.6vw, 0.875rem);
  }
}
.c-equipment-box__text {
  margin-bottom: calc(16 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .c-equipment-box__text {
    margin-bottom: calc(10 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.732rem + 0.3vw, 1rem);
    line-height: 1.625;
  }
}
@media (min-width: 1440px) {
  .c-equipment-box__text {
    margin-bottom: calc(10 * var(--rem-ratio));
  }
}
.c-equipment-box__image {
  width: calc(245 * var(--min-ratio));
  margin: auto auto 0;
}
@media (min-width: 768px) {
  .c-equipment-box__image {
    width: calc(272 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-equipment-box__image {
    width: calc(272 * var(--rem-ratio));
  }
}
.c-equipment-box--title-only {
  height: calc(54 * var(--min-ratio));
  padding: 0;
  border-radius: calc(18 * var(--min-ratio));
  background: var(--white);
}
@media (min-width: 768px) {
  .c-equipment-box--title-only {
    height: calc(60 * var(--max-ratio));
    border-radius: calc(20 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-equipment-box--title-only {
    height: calc(60 * var(--rem-ratio));
    border-radius: calc(20 * var(--rem-ratio));
  }
}
.c-equipment-box--title-only .c-equipment-box__title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.c-equipment-box--other {
  height: calc(54 * var(--min-ratio));
  padding: 0;
  background: none;
}
@media (min-width: 768px) {
  .c-equipment-box--other {
    height: calc(60 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-equipment-box--other {
    height: calc(60 * var(--rem-ratio));
  }
}
.c-equipment-box--other .c-equipment-box__title {
  width: 100%;
  height: 100%;
  font-size: clamp(0.901rem, 0.866rem + 0.15vw, 1rem);
  line-height: 1.6245662734;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .c-equipment-box--other .c-equipment-box__title {
    padding: 0 calc(15 * var(--max-ratio));
    font-size: clamp(0.901rem, 0.787rem + 0.24vw, 1rem);
    line-height: 1.625;
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .c-equipment-box--other .c-equipment-box__title {
    padding: 0 calc(15 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Option box
============================================================================================ ^^ */
.c-option-box {
  width: calc(284 * var(--min-ratio));
  height: 100%;
  padding: calc(34 * var(--min-ratio)) calc(18 * var(--min-ratio)) calc(20 * var(--min-ratio));
  margin-top: calc(15 * var(--min-ratio));
  border: none;
  cursor: pointer;
  border: 2px solid #f39800;
  background-color: #fffef0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .c-option-box {
    width: calc(318 * var(--max-ratio));
    padding: calc(38 * var(--max-ratio)) calc(18 * var(--max-ratio)) calc(20 * var(--max-ratio));
    margin-top: calc(15 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-option-box {
    width: calc(318 * var(--rem-ratio));
    padding: calc(38 * var(--rem-ratio)) calc(18 * var(--rem-ratio)) calc(20 * var(--rem-ratio));
    margin-top: calc(15 * var(--rem-ratio));
  }
}
.c-option-box__balloon {
  height: calc(30 * var(--min-ratio));
  padding: 0 calc(20 * var(--min-ratio));
  border-radius: calc(infinity * 1px);
  background-color: #ed6c00;
  font-size: clamp(1.113rem, 1.065rem + 0.21vw, 1.25rem);
  color: var(--white);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(-15 * var(--min-ratio));
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .c-option-box__balloon {
    height: calc(34 * var(--max-ratio));
    padding: 0 calc(20 * var(--max-ratio));
    font-size: clamp(0.938rem, 0.58rem + 0.74vw, 1.25rem);
    top: calc(-17 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-option-box__balloon {
    height: calc(34 * var(--rem-ratio));
    padding: 0 calc(20 * var(--rem-ratio));
    top: calc(-17 * var(--rem-ratio));
  }
}
.c-option-box__balloon::after {
  width: calc(12 * var(--min-ratio));
  height: calc(13 * var(--min-ratio));
  background-color: #ed6c00;
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
  .c-option-box__balloon::after {
    width: calc(12 * var(--max-ratio));
    height: calc(13 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-option-box__balloon::after {
    width: calc(12 * var(--rem-ratio));
    height: calc(13 * var(--rem-ratio));
  }
}
.c-option-box__title {
  margin-bottom: calc(7 * var(--min-ratio));
  font-size: clamp(1.28rem, 1.225rem + 0.24vw, 1.438rem);
  line-height: 1.3046875;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-option-box__title {
    margin-bottom: calc(8 * var(--max-ratio));
    font-size: clamp(1rem, 0.5rem + 1.04vw, 1.438rem);
    line-height: 1.3043478261;
  }
}
@media (min-width: 1440px) {
  .c-option-box__title {
    margin-bottom: calc(8 * var(--rem-ratio));
  }
}
.c-option-box__text {
  margin-bottom: calc(24 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .c-option-box__text {
    margin-bottom: calc(20 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.732rem + 0.3vw, 1rem);
    line-height: 1.5625;
  }
}
@media (min-width: 1440px) {
  .c-option-box__text {
    margin-bottom: calc(20 * var(--rem-ratio));
  }
}
.c-option-box__image {
  width: 100%;
  margin: auto auto 0;
}

/* ========================================================================================= ^^
  Option slider
============================================================================================ ^^ */
.c-option-wrap {
  width: 100vw;
  padding-left: calc(50vw - 50%);
  margin: 0 calc(50% - 50vw) calc(30 * var(--min-ratio));
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-option-wrap {
    max-width: calc(1440 * var(--rem-ratio));
    width: 100%;
    padding-left: calc(18 * var(--max-ratio));
    margin: 0 auto calc(13 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-option-wrap {
    padding-left: calc(18 * var(--rem-ratio));
    margin-bottom: calc(13 * var(--rem-ratio));
  }
}

.c-option-slider {
  overflow: visible;
}
.c-option-slider .swiper-wrapper {
  padding-bottom: calc(16 * var(--min-ratio));
}
@media (min-width: 768px) {
  .c-option-slider .swiper-wrapper {
    padding-bottom: calc(16 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .c-option-slider .swiper-wrapper {
    padding-bottom: calc(16 * var(--rem-ratio));
  }
}
.c-option-slider .swiper-slide {
  height: auto;
}

/* ========================================================================================= ^^
  Introduction
============================================================================================ ^^ */
.p-introduction {
  padding-top: calc(25 * var(--min-ratio));
  padding-bottom: calc(55 * var(--min-ratio));
  background-color: var(--white);
}
@media (min-width: 768px) {
  .p-introduction {
    padding-top: calc(30 * var(--max-ratio));
    padding-bottom: calc(120 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-introduction {
    padding-top: calc(30 * var(--rem-ratio));
    padding-bottom: calc(120 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .p-introduction::before {
    width: calc(215 * var(--max-ratio));
    height: calc(454 * var(--max-ratio));
    background: url(../img/leaf01_pc.webp) no-repeat 0 0/100% auto;
    content: " ";
    position: absolute;
    top: calc(-370 * var(--max-ratio));
    left: calc(66 * var(--max-ratio));
  }
}
@media (min-width: 900px) {
  .p-introduction::before {
    top: calc(-310 * var(--max-ratio));
    left: calc(66 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-introduction::before {
    width: calc(215 * var(--rem-ratio));
    height: calc(454 * var(--rem-ratio));
    top: calc(-310 * var(--rem-ratio));
    left: calc(66 * var(--rem-ratio));
  }
}
.p-introduction .c-section-title {
  width: calc(100 * var(--min-ratio));
  margin: 0 auto calc(17 * var(--min-ratio));
  fill: var(--logo-color);
  transform: none;
}
@media (min-width: 768px) {
  .p-introduction .c-section-title {
    width: calc(208 * var(--max-ratio));
    margin-bottom: calc(48 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-introduction .c-section-title {
    width: calc(208 * var(--rem-ratio));
    margin-bottom: calc(48 * var(--rem-ratio));
  }
}
.p-introduction .c-text {
  margin-bottom: calc(25 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.7857142857;
  text-align: center;
}
@media (min-width: 768px) {
  .p-introduction .c-text {
    margin-bottom: calc(11 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
  }
}
@media (min-width: 1440px) {
  .p-introduction .c-text {
    margin-bottom: calc(11 * var(--rem-ratio));
  }
}
.p-introduction .c-image {
  width: calc(266 * var(--min-ratio));
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-introduction .c-image {
    width: calc(446 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-introduction .c-image {
    width: calc(446 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Concept
============================================================================================ ^^ */
.p-concept {
  padding-bottom: calc(137 * var(--min-ratio));
  background-color: var(--section-bg-color);
}
@media (min-width: 768px) {
  .p-concept {
    padding-bottom: calc(337 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-concept {
    padding-bottom: calc(337 * var(--rem-ratio));
  }
}
.p-concept::before {
  width: calc(69 * var(--min-ratio));
  height: calc(107.5 * var(--min-ratio));
  background: url(../img/leaf01_sp.webp) no-repeat 0 0/100% auto;
  content: " ";
  position: absolute;
  top: calc(-56 * var(--min-ratio));
  right: calc(10 * var(--min-ratio));
}
@media (min-width: 768px) {
  .p-concept::before {
    width: calc(215 * var(--max-ratio));
    height: calc(335.5 * var(--max-ratio));
    background: url(../img/leaf02_pc.webp) no-repeat 0 0/100% auto;
    top: calc(-251 * var(--max-ratio));
    right: calc(76 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-concept::before {
    width: calc(215 * var(--rem-ratio));
    height: calc(335.5 * var(--rem-ratio));
    top: calc(-251 * var(--rem-ratio));
    right: calc(76 * var(--rem-ratio));
  }
}
.p-concept::after {
  width: calc(69 * var(--min-ratio));
  height: calc(107.5 * var(--min-ratio));
  background: url(../img/leaf02_sp.webp) no-repeat 0 0/100% auto;
  content: " ";
  position: absolute;
  bottom: calc(5 * var(--min-ratio));
  left: calc(15 * var(--min-ratio));
  z-index: 1;
}
@media (min-width: 768px) {
  .p-concept::after {
    width: calc(278.5 * var(--max-ratio));
    height: calc(320.5 * var(--max-ratio));
    background: url(../img/leaf03_pc.webp) no-repeat 0 0/100% auto;
    bottom: calc(18 * var(--max-ratio));
    left: calc(61 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-concept::after {
    width: calc(278.5 * var(--rem-ratio));
    height: calc(320.5 * var(--rem-ratio));
    bottom: calc(18 * var(--rem-ratio));
    left: calc(61 * var(--rem-ratio));
  }
}
.p-concept .c-section-title {
  width: calc(156 * var(--min-ratio));
  margin: 0 auto;
  fill: var(--concept-title-color);
}
@media (min-width: 768px) {
  .p-concept .c-section-title {
    width: calc(312 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-concept .c-section-title {
    width: calc(312 * var(--rem-ratio));
  }
}
.p-concept .c-lead {
  margin-top: calc(-12 * var(--min-ratio));
  margin-bottom: calc(3 * var(--min-ratio));
  font-size: clamp(1.536rem, 1.304rem + 0.99vw, 2.194rem);
  line-height: 0.8603988604;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-concept .c-lead {
    margin-top: calc(22 * var(--max-ratio));
    font-size: clamp(1.536rem, 0.783rem + 1.57vw, 2.194rem);
    line-height: 0.8603988604;
  }
}
@media (min-width: 1440px) {
  .p-concept .c-lead {
    margin-top: calc(22 * var(--rem-ratio));
  }
}
.p-concept .c-lead span {
  font-size: clamp(1.877rem, 1.594rem + 1.21vw, 2.681rem);
  color: #e60012;
  line-height: 1.4205298013;
}
@media (min-width: 768px) {
  .p-concept .c-lead span {
    font-size: clamp(1.877rem, 0.958rem + 1.92vw, 2.681rem);
    line-height: 0.703962704;
  }
}
.p-concept .c-text {
  width: 100vw;
  margin: 0 calc(50% - 50vw) calc(13 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.7857142857;
  text-align: center;
}
@media (min-width: 768px) {
  .p-concept .c-text {
    width: 100%;
    margin: 0 auto calc(23 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
    line-height: 1.75;
  }
}
@media (min-width: 1440px) {
  .p-concept .c-text {
    margin-bottom: calc(23 * var(--rem-ratio));
  }
}
.p-concept .c-concept-menu {
  margin-bottom: calc(13 * var(--min-ratio));
}
@media (min-width: 768px) {
  .p-concept .c-concept-menu {
    margin-bottom: calc(43 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-concept .c-concept-menu {
    margin-bottom: calc(43 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Equipment
============================================================================================ ^^ */
.p-equipment {
  padding-bottom: calc(146 * var(--min-ratio));
  background-color: var(--white);
}
@media (min-width: 768px) {
  .p-equipment {
    padding-bottom: calc(212 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-equipment {
    padding-bottom: calc(212 * var(--rem-ratio));
  }
}
.p-equipment::before {
  width: calc(69 * var(--min-ratio));
  height: calc(107.5 * var(--min-ratio));
  background: url(../img/leaf01_sp.webp) no-repeat 0 0/100% auto;
  content: " ";
  position: absolute;
  top: calc(-56 * var(--min-ratio));
  right: calc(10 * var(--min-ratio));
}
@media (min-width: 768px) {
  .p-equipment::before {
    display: none;
  }
}
.p-equipment .c-section-title {
  width: calc(190 * var(--min-ratio));
  margin: 0 auto;
  fill: var(--equipment-title-color);
}
@media (min-width: 768px) {
  .p-equipment .c-section-title {
    width: calc(360 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-equipment .c-section-title {
    width: calc(360 * var(--rem-ratio));
  }
}
.p-equipment .c-lead {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  padding: 0 calc(20 * var(--min-ratio));
  margin: calc(-18 * var(--min-ratio)) auto calc(13 * var(--min-ratio));
  font-size: clamp(1.137rem, 0.793rem + 1.47vw, 2.114rem);
  line-height: 1.5805387576;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-equipment .c-lead {
    padding: 0 calc(20 * var(--max-ratio));
    margin-top: 0;
    margin-bottom: calc(12 * var(--max-ratio));
    font-size: clamp(1.137rem, 0.02rem + 2.33vw, 2.114rem);
    line-height: 1.3305736251;
  }
}
@media (min-width: 1440px) {
  .p-equipment .c-lead {
    padding: 0;
    margin-bottom: calc(12 * var(--rem-ratio));
  }
}
.p-equipment .c-text {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  padding: 0 calc(20 * var(--min-ratio));
  margin: 0 auto calc(16 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .p-equipment .c-text {
    padding: 0 calc(20 * var(--max-ratio));
    margin-bottom: calc(50 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
    line-height: 1.75;
  }
}
@media (min-width: 1440px) {
  .p-equipment .c-text {
    padding: 0;
    margin-bottom: calc(50 * var(--rem-ratio));
  }
}
@media (min-width: 768px) {
  .p-equipment .c-equipment-block + .c-equipment-block {
    margin-bottom: calc(12 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-equipment .c-equipment-block + .c-equipment-block {
    margin-bottom: calc(12 * var(--rem-ratio));
  }
}
.p-equipment .c-note {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
}

/* ========================================================================================= ^^
  Option
============================================================================================ ^^ */
.p-option {
  padding-bottom: calc(55 * var(--min-ratio));
  background-color: var(--section-bg-color);
}
@media (min-width: 768px) {
  .p-option {
    padding-bottom: calc(135 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-option {
    padding-bottom: calc(135 * var(--rem-ratio));
  }
}
.p-option::before {
  width: calc(69 * var(--min-ratio));
  height: calc(107.5 * var(--min-ratio));
  background: url(../img/leaf01_sp.webp) no-repeat 0 0/100% auto;
  content: " ";
  position: absolute;
  top: calc(-69 * var(--min-ratio));
  right: calc(10 * var(--min-ratio));
}
@media (min-width: 768px) {
  .p-option::before {
    width: calc(215 * var(--max-ratio));
    height: calc(335.5 * var(--max-ratio));
    background: url(../img/leaf02_pc.webp) no-repeat 0 0/100% auto;
    top: calc(-200 * var(--max-ratio));
    right: calc(76 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-option::before {
    width: calc(215 * var(--rem-ratio));
    height: calc(335.5 * var(--rem-ratio));
    top: calc(-200 * var(--rem-ratio));
    right: calc(76 * var(--rem-ratio));
  }
}
.p-option .c-section-title {
  width: calc(121 * var(--min-ratio));
  margin: 0 auto;
  fill: var(--concept-title-color);
}
@media (min-width: 768px) {
  .p-option .c-section-title {
    width: calc(241 * var(--max-ratio));
    margin-bottom: calc(18 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-option .c-section-title {
    width: calc(241 * var(--rem-ratio));
    margin-bottom: calc(18 * var(--rem-ratio));
  }
}
.p-option .c-lead {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  margin: 0 auto calc(13 * var(--min-ratio));
  font-size: clamp(1.137rem, 0.793rem + 1.47vw, 2.114rem);
  line-height: 1.5805387576;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-option .c-lead {
    margin-bottom: calc(11 * var(--max-ratio));
    font-size: clamp(1.137rem, 0.02rem + 2.33vw, 2.114rem);
    line-height: 1.3305736251;
  }
}
@media (min-width: 1440px) {
  .p-option .c-lead {
    margin-bottom: calc(11 * var(--rem-ratio));
  }
}
.p-option .c-text {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  margin: 0 auto calc(10 * var(--min-ratio));
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .p-option .c-text {
    margin-bottom: calc(35 * var(--max-ratio));
    font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
    line-height: 1.75;
  }
}
@media (min-width: 1440px) {
  .p-option .c-text {
    margin-bottom: calc(35 * var(--rem-ratio));
  }
}
.p-option .p-option-wrap {
  margin-bottom: calc(30 * var(--min-ratio));
}
@media (min-width: 768px) {
  .p-option .p-option-wrap {
    margin-bottom: calc(13 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-option .p-option-wrap {
    margin-bottom: calc(13 * var(--rem-ratio));
  }
}
.p-option .c-note {
  max-width: calc(1122 * var(--rem-ratio));
  width: 100%;
  margin: 0 auto calc(43 * var(--min-ratio));
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-option .c-note {
    margin-bottom: calc(100 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-option .c-note {
    margin-bottom: calc(100 * var(--rem-ratio));
  }
}

/* ========================================================================================= ^^
  Buttons
============================================================================================ ^^ */
.p-buttons {
  width: calc(270 * var(--min-ratio));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  row-gap: calc(20 * var(--min-ratio));
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .p-buttons {
    width: calc(1120 * var(--max-ratio));
    grid-template-columns: repeat(2, 47.3214285714%);
    -moz-column-gap: 5.3571428571%;
    column-gap: 5.3571428571%;
    row-gap: unset;
  }
}
@media (min-width: 1440px) {
  .p-buttons {
    width: calc(1120 * var(--rem-ratio));
  }
}
.p-buttons .c-button-round {
  width: 100%;
  height: calc(72 * var(--min-ratio));
}
@media (min-width: 768px) {
  .p-buttons .c-button-round {
    height: calc(140 * var(--max-ratio));
  }
}
@media (min-width: 1440px) {
  .p-buttons .c-button-round {
    height: calc(140 * var(--rem-ratio));
  }
}
.p-buttons .c-button-round__link {
  font-size: clamp(0.896rem, 0.595rem + 1.28vw, 1.75rem);
  line-height: 1.2498255408;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-buttons .c-button-round__link {
    font-size: clamp(0.896rem, -0.081rem + 2.03vw, 1.75rem);
    line-height: 1.25;
  }
}
.p-buttons .c-button-round__inner span {
  width: calc(80 * var(--rem-ratio));
  height: calc(17 * var(--rem-ratio));
  font-size: clamp(0.688rem, 0.489rem + 0.85vw, 1.25rem);
}
@media (min-width: 768px) {
  .p-buttons .c-button-round__inner span {
    width: calc(129 * var(--rem-ratio));
    height: calc(28 * var(--rem-ratio));
    border-radius: calc(10 * var(--rem-ratio));
    font-size: clamp(0.688rem, 0.045rem + 1.34vw, 1.25rem);
    line-height: 1.75;
  }
}
@media (min-width: 1440px) {
  .p-buttons .c-button-round__inner span {
    width: calc(129 * var(--rem-ratio));
    height: calc(28 * var(--rem-ratio));
    border-radius: calc(10 * var(--rem-ratio));
  }
}
.p-buttons .c-button-round--orange .c-button-round__link {
  padding-left: calc(60 * var(--min-ratio));
  background: url(../img/icon-button01.webp), linear-gradient(180deg, rgb(255, 206, 0) 0.32%, rgb(255, 133, 0) 100%);
  background-repeat: no-repeat;
  background-size: calc(58 * var(--min-ratio)) auto, cover;
  background-position: calc(27 * var(--min-ratio)) 100%, 0 0;
}
@media (min-width: 768px) {
  .p-buttons .c-button-round--orange .c-button-round__link {
    padding-left: calc(120 * var(--max-ratio));
    background-size: calc(116 * var(--max-ratio)) auto, cover;
    background-position: calc(54 * var(--max-ratio)) 100%, 0 0;
  }
}
@media (min-width: 1440px) {
  .p-buttons .c-button-round--orange .c-button-round__link {
    padding-left: calc(120 * var(--rem-ratio));
    background-size: calc(116 * var(--rem-ratio)) auto, cover;
    background-position: calc(54 * var(--rem-ratio)) 100%, 0 0;
  }
}
.p-buttons .c-button-round--green .c-button-round__link {
  padding-left: calc(29 * var(--min-ratio));
  background: url(../img/icon-button02.webp), linear-gradient(180deg, rgb(141, 197, 86) 0.32%, rgb(0, 160, 61) 100%);
  background-repeat: no-repeat;
  background-size: calc(30 * var(--min-ratio)) auto, cover;
  background-position: calc(30 * var(--min-ratio)) 50%, 0 0;
}
@media (min-width: 768px) {
  .p-buttons .c-button-round--green .c-button-round__link {
    padding-left: calc(58 * var(--max-ratio));
    background-size: calc(60 * var(--max-ratio)) auto, cover;
    background-position: calc(60 * var(--max-ratio)) 50%, 0 0;
  }
}
@media (min-width: 1440px) {
  .p-buttons .c-button-round--green .c-button-round__link {
    padding-left: calc(58 * var(--rem-ratio));
    background-size: calc(60 * var(--rem-ratio)) auto, cover;
    background-position: calc(60 * var(--rem-ratio)) 50%, 0 0;
  }
}