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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:where(dialog)::backdrop {
  /* Normalize the background color of the ::backdrop element. */
  background-color: oklch(0% 0 0deg / 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;
}

body {
  font-size: 2.0860495437vw;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
}

sub {
  line-height: 1;
  font-size: 0.7em;
}

body {
  min-height: 100vh;
  font-family: "Yu Gothic", "游ゴシック体", YuGothic, "Noto Sans JP", "Manrope", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "メイリオ", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  color: #333333;
}
body.header-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: unset;
}

main {
  overflow: hidden;
  padding-block-start: 0;
}

img[src$=".svg"] {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

a {
  display: inline-block;
}
@media (any-hover: hover) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.js-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.u-underline {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .u-underline:hover {
    text-decoration: none;
  }
}

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

@media (min-width: 768px) and (max-width: 1024px) {
  .u-tb-hidden {
    display: none;
  }
}

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

@media (max-width: 1024px) {
  .u-mobile-hidden {
    display: none;
  }
}

[data-sr-only] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.biz-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 18px;
}
@media (min-width: 768px) {
  .biz-inner {
    padding-inline: min(8.3333333333vw, 120px);
  }
}

.biz-section {
  padding-block: 48px 64px;
}
@media (min-width: 768px) {
  .biz-section {
    padding-block: 96px 120px;
  }
}

.l-main {
  margin-bottom: 60px;
}

.l-footer img, .l-footer svg, .l-footer picture, .l-footer video, .l-footer canvas, .l-footer model, .l-footer iframe, .l-footer embed, .l-footer object {
  block-size: revert-layer;
}

.header {
  width: 100%;
  margin-inline: auto;
  z-index: 9999;
  background-color: #F01E1E;
}
@media (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
@media (min-width: 768px) {
  .header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header.is-fixed {
  position: fixed;
  inset-inline: 0;
  top: 0;
  margin-inline: 0;
  max-width: none;
}

#main.is-biz-header-fixed {
  padding-top: var(--biz-header-fixed-h, 60px);
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: baseline;
  gap: 20px;
  padding-inline: 48px;
  max-width: 1300px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .header-inner {
    background-color: #F01E1E;
    align-items: center;
    gap: 0;
    padding-inline: 16px 12px;
    padding-block-start: 4px;
    height: 100%;
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  body.header-open .header {
    height: 60px;
  }
  body.is-resizing .header,
  body.is-resizing .header-inner,
  body.is-resizing .header-nav {
    transition: none !important;
  }
}
@media (min-width: 768px) {
  .header-logo {
    transform: translate(5px, 5px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (any-hover: hover) {
  .header-logo a {
    display: block;
    transition: opacity 0.3s;
  }
  .header-logo a:hover {
    opacity: 0.7;
  }
}

.header-main-logo {
  display: block;
  width: 280px;
}
@media (max-width: 1024px) {
  .header-main-logo {
    width: 188px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  transform: translateY(6px);
}
@media (max-width: 1024px) {
  .header-nav {
    padding-inline: 20px;
    padding-block-start: 48px;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: calc(100svh - 60px);
    background-color: #F01E1E;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
}

@media (max-width: 1024px) {
  body.header-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
  }
}
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 1024px) {
  .header-nav-list {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .header-nav-list {
    margin-bottom: 0;
  }
}

.header-nav-item + .header-nav-item {
  position: relative;
}
.header-nav-item + .header-nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  border-radius: 1px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .header-nav-item + .header-nav-item::before {
    content: none;
  }
}
.header-nav-item:last-child {
  margin-inline-start: 34px;
}
@media (max-width: 1024px) {
  .header-nav-item:last-child {
    margin-inline-start: 0;
  }
}
.header-nav-item:last-child::before {
  content: none;
}

.header-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header-nav-link {
    padding: 17px;
    display: inline-flex;
  }
}
.header-nav-link.-about img {
  width: 168px;
}
@media (min-width: 768px) {
  .header-nav-link.-about img {
    width: 172px;
  }
}
.header-nav-link.-lineup img {
  width: 106px;
}
@media (min-width: 768px) {
  .header-nav-link.-lineup img {
    width: 108px;
  }
}
.header-nav-link.-showcase img {
  width: 76px;
}
@media (min-width: 768px) {
  .header-nav-link.-showcase img {
    width: 78px;
  }
}
.header-nav-link.-flow img {
  width: 95px;
}
@media (min-width: 768px) {
  .header-nav-link.-flow img {
    width: 98px;
  }
}
.header-nav-link.-faq img {
  width: 31px;
}
@media (min-width: 768px) {
  .header-nav-link.-faq img {
    width: 32px;
  }
}
.header-nav-link.-button {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 200px;
  height: 26px;
}
@media (min-width: 768px) {
  .header-nav-link.-button {
    width: 193px;
    height: 28px;
    padding: 0;
  }
}
.header-nav-link.-button img {
  width: 95px;
  height: 14px;
}
@media (min-width: 768px) {
  .header-nav-link.-button img {
    width: 91px;
    height: 14px;
  }
}

.header-menu {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .header-menu {
    display: none;
  }
}

.header-menu-button {
  border: none;
}
@media (max-width: 1024px) {
  .header-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F01E1E;
    cursor: pointer;
    width: auto;
    height: auto;
    min-width: 38px;
    min-height: 44px;
    padding: 0;
    position: relative;
  }
}

.header-menu-icon {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}
.header-menu-icon.-close {
  display: none;
  max-width: 38px;
}

body.header-open .header-menu-icon.-open {
  display: none;
}
body.header-open .header-menu-icon.-close {
  display: block;
}

.biz-footer {
  background-color: #fff;
  text-align: center;
}

.biz-footer-link {
  padding-block: 20px;
  display: inline-block;
  margin-inline: auto;
  width: 172px;
}
@media (min-width: 768px) {
  .biz-footer-link {
    padding-block: 32px 38px;
    width: 222px;
  }
}

.biz-kv {
  position: relative;
  width: 100%;
  height: 153.8461538462vw;
  background: #F0E6D6 url("/takuhaimeiji/biz/assets/img/img_kv_sp.webp") no-repeat center center/100% auto;
}
@media (min-width: 768px) {
  .biz-kv {
    height: 41.6666666667vw;
    background: url("/takuhaimeiji/biz/assets/img/img_kv_pc.webp") no-repeat center center/100% auto;
  }
}

.biz-kv-contents {
  position: absolute;
  top: 112.3076923077vw;
  left: 0;
}
@media (min-width: 768px) {
  .biz-kv-contents {
    top: 25.4166666667vw;
  }
}

.biz-kv-title {
  width: 80.5128205128vw;
}
@media (min-width: 768px) {
  .biz-kv-title {
    width: 40.2777777778vw;
    height: 4.0277777778vw;
  }
}

.biz-kv-product {
  display: block;
  width: 85.1282051282vw;
  margin-block-start: 4.6153846154vw;
  margin-inline-start: 5.1282051282vw;
}
@media (min-width: 768px) {
  .biz-kv-product {
    width: 33.6111111111vw;
    height: 12.5vw;
    margin-inline-start: 8.8888888889vw;
    margin-block-start: 34px;
  }
}

.biz-lead {
  background-color: #F0E6D6;
  padding-block: 7.1794871795vw 13.3333333333vw;
}
@media (min-width: 768px) {
  .biz-lead {
    padding-block: 7.3611111111vw 72px;
  }
}

.biz-lead-title {
  width: 89.7435897436vw;
  margin-block-end: 4.1025641026vw;
}
@media (min-width: 768px) {
  .biz-lead-title {
    width: 100%;
    max-width: 690px;
    margin-block-end: 25px;
  }
}

@media (min-width: 768px) {
  .biz-lead-contents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}

.biz-lead-summary-text {
  max-width: 738px;
  line-height: 1.7;
  font-size: 16px;
}
@media (max-width: 767px) {
  .biz-lead-summary-text {
    line-height: 1.6;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
}
@media (min-width: 768px) {
  .biz-lead-summary-text {
    font-size: 18px;
  }
}

.biz-lead-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px 14px;
}
@media (min-width: 768px) {
  .biz-lead-items {
    display: flex;
    gap: 24px;
    margin-block-start: 32px;
  }
}

@media (min-width: 768px) {
  .biz-lead-item {
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  .biz-lead-item:nth-child(1) {
    max-width: 48%;
    margin-inline: auto;
    grid-column: span 2/span 2;
  }
  .biz-lead-item:nth-child(2), .biz-lead-item:nth-child(3) {
    grid-row-start: 2;
  }
}

.biz-lead-badge {
  margin-block-start: 34px;
}
@media (min-width: 768px) {
  .biz-lead-badge {
    margin-block-start: 0;
    max-width: 322px;
    transform: translateY(-48px);
  }
}

.biz-lead-badge-image {
  display: block;
  max-width: 302px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .biz-lead-badge-image {
    max-width: 314px;
  }
}

.biz-lead-badge-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-block-start: 20px;
  padding-inline: 24px;
  width: 100%;
  margin-inline: auto;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .biz-lead-badge-text {
    width: 325px;
    line-height: 1.5;
    padding-inline: 14px;
    letter-spacing: 0.07em;
    margin-block-end: 5px;
  }
}

.biz-lead-badge-note {
  font-size: 13px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  padding-inline: 24px 20px;
  margin-inline: auto;
  width: 400px;
}
@media (min-width: 768px) {
  .biz-lead-badge-note {
    width: 325px;
    padding-inline: 6px;
  }
}

.biz-lead-note {
  margin-block-start: 8px;
  padding-inline-start: 4px;
  font-weight: 400;
  font-size: 12px;
}
@media (min-width: 768px) {
  .biz-lead-note {
    font-size: 13px;
  }
}

.biz-worries {
  background-color: #F5F5F0;
  padding-block: 80px 62px;
}
@media (min-width: 768px) {
  .biz-worries {
    padding-block: 86px 108px;
  }
}

.biz-worries-title {
  position: relative;
}
@media (min-width: 768px) {
  .biz-worries-title {
    margin-block-end: 40px;
  }
}
.biz-worries-title::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 45px;
  height: 90px;
  background: url("/takuhaimeiji/biz/assets/img/obg_line-left.svg") no-repeat center center/100% auto;
}
@media (min-width: 768px) {
  .biz-worries-title::before {
    top: -62px;
    left: 20px;
    width: 90px;
    height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .biz-worries-title::before {
    top: -4.3055555556vw;
    left: 1.3888888889vw;
    width: 6.25vw;
    height: 12.5vw;
  }
}
.biz-worries-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: -58px;
  width: 38px;
  height: 66px;
  background: url("/takuhaimeiji/biz/assets/img/obg_line-right.svg") no-repeat center center/100% auto;
}
@media (min-width: 768px) {
  .biz-worries-title::after {
    top: -18px;
    right: 30px;
    width: 76px;
    height: 132px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .biz-worries-title::after {
    top: -1.25vw;
    right: 2.0833333333vw;
    width: 5.2777777778vw;
    height: 9.1666666667vw;
  }
}

.biz-worries-title-image {
  display: block;
  margin-inline: auto;
  width: 303px;
  height: 56px;
}
@media (min-width: 768px) {
  .biz-worries-title-image {
    width: 584px;
    height: 72px;
  }
}

.biz-worries-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-block-end: 50px;
  padding-inline: 44px;
  margin-block-start: 20px;
}
@media (min-width: 768px) {
  .biz-worries-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
    justify-self: center;
    padding-block-end: 77px;
  }
}
.biz-worries-list::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 20px;
  background: url("/takuhaimeiji/biz/assets/img/icon_arrow-down_sp.svg") no-repeat center center/100% auto;
}
@media (min-width: 768px) {
  .biz-worries-list::after {
    background: url("/takuhaimeiji/biz/assets/img/icon_arrow-down_pc.svg") no-repeat center center/100% auto;
    width: 62px;
    height: 30px;
  }
}

@media (min-width: 768px) {
  .biz-worries-item {
    max-width: 336px;
  }
}
.biz-worries-item figure {
  margin-block-end: 0;
}

.biz-resolve {
  padding-block-start: 18px;
  background-color: #F5F5F0;
}
@media (min-width: 768px) {
  .biz-resolve {
    padding-block: 22px 0;
  }
}

.biz-resolve-title {
  position: relative;
}
@media (min-width: 768px) {
  .biz-resolve-title {
    margin-block-end: 60px;
    padding-inline-start: 3.0769230769%;
  }
}

.biz-resolve-title-image {
  display: block;
  width: 328px;
}
@media (max-width: 767px) {
  .biz-resolve-title-image {
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .biz-resolve-title-image {
    width: 1000px;
    height: 197px;
  }
}

.biz-resolve-title-text {
  margin-block-start: 20px;
  padding-inline: 14px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .biz-resolve-title-text {
    margin-block-start: 0;
    padding-inline: 0;
    font-size: 20px;
  }
}

.biz-resolve-list {
  margin-block-start: 44px;
}
@media (min-width: 768px) {
  .biz-resolve-list {
    display: grid;
    margin-block-start: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.biz-resolve-item {
  position: relative;
}
@media (max-width: 767px) {
  .biz-resolve-item + .biz-resolve-item {
    margin-block-start: 24px;
  }
}

.biz-resolve-note {
  margin-block-start: 50px;
  padding-block-start: 6px;
  padding-inline: 4px;
  background: url("/takuhaimeiji/biz/assets/img/border_resolve-note_sp.svg") left top no-repeat;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  .biz-resolve-note {
    margin-block-start: 60px;
    padding-block-start: 17px;
    padding-inline: 36px;
    background: url("/takuhaimeiji/biz/assets/img/border_resolve-note_pc.svg") left top no-repeat;
    background-size: 1200px auto;
  }
}

.biz-resolve-note-title {
  letter-spacing: 0.1em;
  font-size: 13px;
}
@media (min-width: 768px) {
  .biz-resolve-note-title {
    font-size: 20px;
  }
}
.biz-resolve-note-title strong {
  font-weight: 700;
}
.biz-resolve-note-text {
  margin-block-start: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .biz-resolve-note-text {
    margin-block-start: 8px;
    line-height: 1.4;
    font-size: 16px;
  }
}

.biz-lineup {
  background-color: #F0E6D6;
  padding-block: 54px 75px;
}
@media (min-width: 768px) {
  .biz-lineup {
    padding-block: 98px 108px;
  }
}

.biz-lineup-title {
  margin-inline: auto;
  max-width: 328px;
}
@media (min-width: 768px) {
  .biz-lineup-title {
    max-width: 520px;
  }
}

.biz-lineup-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-block: 25px 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .biz-lineup-text {
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
  }
}
@media (min-width: 768px) {
  .biz-lineup-text {
    font-size: 20px;
    letter-spacing: 0.06em;
    margin-block: 28px 35px;
  }
}

.biz-lineup-image {
  display: block;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media (max-width: 767px) {
  .biz-lineup-image {
    padding-inline: 12px;
    transform: translateX(10px);
  }
}

@media (min-width: 768px) {
  .biz-lineup-body {
    padding-inline: 10px;
  }
}

.biz-lineup-body-image {
  display: block;
  margin-block-start: 52px;
}
@media (min-width: 768px) {
  .biz-lineup-body-image {
    margin-block-start: 100px;
    max-width: 1200px;
    margin-inline: auto;
  }
}

.biz-download {
  position: relative;
  margin-block-start: 72px;
}
@media (min-width: 768px) {
  .biz-download {
    margin-block-start: 75px;
  }
}

.biz-download-image {
  display: block;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .biz-download-image {
    width: 980px;
  }
}

.biz-download-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .biz-download-text {
    top: 127px;
    font-size: 18px;
  }
}

.biz-download-button {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 60px;
}
@media (max-width: 767px) {
  .biz-download-button {
    width: 210px;
    height: 32px;
    bottom: -16px;
  }
}
@media (min-width: 768px) {
  .biz-download-button {
    bottom: -20px;
  }
}

@media (min-width: 768px) {
  .biz-download-button-link {
    position: relative;
    color: transparent;
    border-radius: 999px;
  }
}
.biz-download-button-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 4px);
  background-color: #fff;
  border-radius: 999px;
  z-index: -1;
}
@media (any-hover: hover) {
  .biz-download-button-link:hover {
    opacity: 1;
    color: transparent;
  }
  .biz-download-button-link:hover img {
    opacity: 0.7;
  }
  .biz-download-button-link:hover::before {
    opacity: 1;
  }
}
.biz-download-button-link img {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}

.biz-showcase {
  background-color: #F5F5F0;
  padding-block: 54px 42px;
}
@media (min-width: 768px) {
  .biz-showcase {
    padding-block: 110px 108px;
  }
}
.biz-showcase .biz-inner {
  position: relative;
  z-index: 1;
}

.biz-showcase-title {
  margin-inline: auto;
  max-width: 328px;
}
@media (min-width: 768px) {
  .biz-showcase-title {
    max-width: 768px;
  }
}

.biz-showcase-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-block: 30px 65px;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.6;
}
@media (min-width: 768px) {
  .biz-showcase-text {
    font-size: 20px;
    margin-block: 28px 65px;
  }
}

.biz-showcase-item {
  position: relative;
  border-radius: 14px;
  border: 1px solid #000;
  background-color: #fff;
  padding: 60px 20px 20px 20px;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .biz-showcase-item {
    border-radius: 28px;
    padding: 20px;
    padding-block-end: 12px;
  }
}
.biz-showcase-item::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #FAFA28;
  border-radius: 14px;
  border: 1px solid #333333;
}
@media (min-width: 768px) {
  .biz-showcase-item::before {
    top: 6px;
    left: 6px;
    border-radius: 28px;
  }
}
.biz-showcase-item + .biz-showcase-item {
  margin-block-start: 96px;
}
@media (min-width: 768px) {
  .biz-showcase-item + .biz-showcase-item {
    margin-block-start: 64px;
  }
}

.biz-showcase-item-title {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-inline: auto;
  width: 264px;
}
@media (min-width: 768px) {
  .biz-showcase-item-title {
    top: -34px;
    width: 305px;
  }
}

.biz-showcase-item-contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .biz-showcase-item-contents {
    flex-direction: row;
    gap: 32px;
  }
}

.biz-showcase-item-summary {
  flex-shrink: 0;
}
.biz-showcase-item-summary.-item1 {
  position: relative;
}
.biz-showcase-item-summary.-item1 .balloon {
  margin-block-end: 10px;
}
@media (min-width: 768px) {
  .biz-showcase-item-summary.-item1 {
    padding-block-start: 183px;
    padding-inline-start: 136px;
    max-width: 504px;
    width: 100%;
  }
  .biz-showcase-item-summary.-item1 .balloon {
    position: absolute;
    top: 62px;
    left: 100px;
    width: 402px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .biz-showcase-item-summary.-item1 {
    padding-inline-start: 9.4444444444vw;
    max-width: calc(358px + 10.1388888889vw);
  }
  .biz-showcase-item-summary.-item1 .balloon {
    left: 6.9444444444vw;
    padding-inline-end: 20px;
  }
}
@media (min-width: 768px) {
  .biz-showcase-item-summary.-item2 {
    margin-block: min(70px, 7.4626865672%) 20px;
    padding-inline-start: 136px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .biz-showcase-item-summary.-item2 {
    padding-inline: 9.4444444444vw 1.3888888889vw;
  }
}

.biz-showcase-item-image-wrapper {
  flex-shrink: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .biz-showcase-item-image-wrapper {
    max-width: 320px;
    width: min(320px, 22.2222222222vw);
  }
}

.biz-showcase-item-image {
  display: block;
  width: 100%;
  height: auto;
}
.biz-showcase-item-image.-item1 {
  max-width: 270px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .biz-showcase-item-image.-item1 {
    max-width: 100%;
    transform: translate(15px, 2px);
  }
}
.biz-showcase-item-image.-item2 {
  max-width: 100%;
}

.biz-showcase-item-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding-inline: 12px 0;
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .biz-showcase-item-text {
    font-size: 20px;
    padding-inline: 0;
    gap: 16px;
  }
}
.biz-showcase-item-text img {
  width: 22px;
  transform: translateY(0.4em);
}

@media (min-width: 768px) {
  .-item1 .biz-showcase-item-text {
    margin-block-start: 8px;
  }
}

@media (min-width: 768px) {
  .-item2 .biz-showcase-item-text {
    padding-inline: 0;
    margin-block-start: 10px;
  }
}

.biz-showcase-item-label-wrapper {
  text-align: right;
  margin-block-start: 22px;
}
@media (min-width: 768px) {
  .biz-showcase-item-label-wrapper {
    margin-block-start: 22px;
    max-width: 368px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .biz-showcase-item-label-wrapper {
    margin-block-start: 22px;
  }
}

.biz-showcase-item-label {
  background-color: #f5f5f0;
  display: inline-block;
  padding-inline: 15px;
  border: 1px solid #333333;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .biz-showcase-item-label {
    font-size: 16px;
  }
}

.biz-flow {
  background-color: #F5F5F0;
  padding-block: 74px 42px;
}
@media (min-width: 768px) {
  .biz-flow {
    padding-block: 30px 108px;
  }
}
.biz-flow .biz-inner {
  position: relative;
  z-index: 1;
}

.biz-flow-title {
  margin-inline: auto;
  width: 328px;
}
@media (min-width: 768px) {
  .biz-flow-title {
    width: 535px;
  }
}

.biz-flow-contents {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .biz-flow-contents {
    margin-block-start: 46px;
  }
}
.biz-flow-contents picture {
  display: block;
  inline-size: max-content;
}
@media (min-width: 768px) {
  .biz-flow-contents picture {
    width: 100%;
  }
}
.biz-flow-contents img {
  display: block;
  max-inline-size: none;
  block-size: auto;
}
@media (max-width: 767px) {
  .biz-flow-contents img {
    inline-size: 1000px;
  }
}

.biz-flow-note {
  font-size: 12px;
  font-weight: 400;
  margin-block: 15px;
  font-feature-settings: "palt";
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) {
  .biz-flow-note {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-block: 22px;
  }
}

.biz-faq {
  background-color: #F5F5F0;
  padding-block: 48px 64px;
}
@media (min-width: 768px) {
  .biz-faq {
    padding-block: 0 102px;
  }
}

.biz-faq-title {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .biz-faq-title {
    max-width: 535px;
  }
}

.biz-faq-list {
  margin-block: 32px 0;
  margin-inline: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .biz-faq-list {
    margin-block-start: 62px;
  }
}

.biz-faq-item {
  border: 1px solid #333333;
  background-color: #fff;
  border-radius: 32px;
}
.biz-faq-item + .biz-faq-item {
  margin-block-start: 20px;
}

.biz-faq-details {
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
.biz-faq-details::details-content {
  content-visibility: unset;
  display: grid;
}
@media (prefers-reduced-motion: no-preference) {
  .biz-faq-details::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
    transition-timing-function: ease;
  }
}
.biz-faq-details:not([open])::details-content {
  grid-template-rows: 0fr;
}
.biz-faq-details[open]::details-content {
  grid-template-rows: 1fr;
}

.biz-faq-slide {
  overflow: hidden;
  min-block-size: 0;
}
@media (min-width: 768px) {
  .biz-faq-slide {
    margin-top: 2px;
    padding-inline-start: 11.3333333333%;
  }
}

.biz-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
.biz-faq-summary::-webkit-details-marker {
  display: none;
}
.biz-faq-summary::marker {
  content: none;
}
@media (min-width: 768px) {
  .biz-faq-summary {
    padding-block: 24px;
    padding-inline: 54px 48px;
  }
}

.biz-faq-summary-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-inline-size: 0;
  text-align: start;
  width: 100%;
}
@media (min-width: 768px) {
  .biz-faq-summary-label {
    gap: 9.0822179732%;
  }
}

.biz-faq-q-badge {
  flex-shrink: 0;
  margin-block-start: 0.15em;
  inline-size: 30px;
}
@media (min-width: 768px) {
  .biz-faq-q-badge {
    inline-size: 45px;
  }
}

.biz-faq-q-text {
  font-size: 15px;
}
@media (min-width: 768px) {
  .biz-faq-q-text {
    font-size: 24px;
  }
}
.biz-faq-q-text {
  line-height: 1.6;
}

.biz-faq-toggle-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 0.15em;
}
.biz-faq-toggle-icon img {
  display: block;
  inline-size: 20px;
  block-size: auto;
}
@media (min-width: 768px) {
  .biz-faq-toggle-icon img {
    inline-size: 35px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .biz-faq-toggle-icon {
    transition: transform 300ms ease;
  }
}
.biz-faq-details[open] .biz-faq-toggle-icon {
  transform: rotate(180deg);
}

.biz-faq-answer {
  padding-block: 0 20px;
  padding-inline: 57px 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}
@media (min-width: 768px) {
  .biz-faq-answer {
    font-size: 20px;
    padding-block-end: 19px;
  }
}
.biz-faq-answer strong {
  font-size: 15px;
  font-weight: 700;
  color: #F01E1E;
}
@media (min-width: 768px) {
  .biz-faq-answer strong {
    font-size: 22px;
  }
}

.biz-faq-answer-list {
  padding-inline-end: 22px;
}

.biz-faq-answer-item + .biz-faq-answer-item {
  position: relative;
  margin-block-start: 26px;
}
.biz-faq-answer-item + .biz-faq-answer-item::before {
  position: absolute;
  content: "";
  top: -13px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #333333 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 6px 2px;
}

@media (prefers-reduced-motion: reduce) {
  .biz-faq-details::details-content {
    transition: none;
  }
  .biz-faq-toggle-icon {
    transition: none;
  }
}
.biz-contact {
  background-color: #F0E6D6;
  padding-block: 80px;
}
@media (min-width: 768px) {
  .biz-contact {
    padding-block: 42px 90px;
  }
}

.biz-contact-title {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .biz-contact-title {
    max-width: 420px;
  }
}

.biz-contact-body {
  margin-block-start: 40px;
}
@media (min-width: 768px) {
  .biz-contact-body {
    margin-block-start: 80px;
  }
}

.biz-contact-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  .biz-contact-list {
    max-width: 1030px;
    margin-inline: auto;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
  }
}

.biz-contact-item {
  text-align: center;
}

.biz-contact-item-title {
  font-weight: 500;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .biz-contact-item-title {
    font-size: 21px;
  }
}

.biz-contact-item-contents {
  position: relative;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid #333333;
  text-align: center;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .biz-contact-item-contents {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .biz-contact-item-contents {
    width: 500px;
    padding: 12px;
  }
}
.biz-contact-item-contents::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background-color: #FAFA28;
  border-radius: 14px;
  border: 1px solid #333333;
  z-index: -1;
}

.biz-contact-button {
  max-width: 158px;
}
@media (min-width: 768px) {
  .biz-contact-button {
    max-width: 200px;
  }
}

.biz-contact-tel {
  max-width: 295px;
}
@media (min-width: 768px) {
  .biz-contact-tel {
    max-width: 364px;
  }
}

@keyframes floating-follow-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .floating-spacer {
    height: 72px;
    position: relative;
  }
}
.floating {
  position: absolute;
  right: -8px;
  margin-top: 26px;
  transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
  .floating {
    position: absolute;
    top: 38.0555555556vw;
  }
}
.floating.is-follow {
  position: fixed;
  z-index: 9000;
  inset-inline-end: 18px;
  bottom: 120px;
  top: unset;
  margin: 0;
}
@media (min-width: 768px) {
  .floating.is-follow {
    animation: floating-follow-fade-in 0.4s ease;
    inset-inline-end: 0;
  }
}
.floating.is-follow.u-pc-hidden {
  bottom: 72px;
  inset-inline-end: 0;
  right: 10px;
}
@media (prefers-reduced-motion: reduce) {
  .floating.is-follow {
    animation: none;
    opacity: 1;
  }
}
.floating.is-hidden {
  animation: none;
  opacity: 0;
  pointer-events: none;
}

.floating-link {
  display: block;
  width: 52px;
  height: 52px;
  margin-inline-start: auto;
}
@media (min-width: 768px) {
  .floating-link {
    width: 215px;
    height: 58px;
  }
}

/*# sourceMappingURL=local.css.map */
