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

mark,
.u-marker {
  background: linear-gradient(transparent 55%, #FAFA28 55%);
  color: inherit;
  padding-inline: 2px;
}

.u-red {
  color: #F01E1E;
}

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

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

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

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

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

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

.present-heading {
  text-align: center;
}
.present-heading img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
}
@media (min-width: 768px) {
  .present-heading img {
    max-height: 47px;
  }
}

.present-lead {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-lead {
    font-size: 16px;
  }
}

.present-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #333333;
  border-radius: 30px;
  box-shadow: 5px 5px 0 0 #FAFA28, 5px 5px 0 1px #333333;
}

.l-main {
  margin-bottom: 60px;
}
.l-main :where(p, a) {
  margin-top: 0;
}

.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;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
@media (min-width: 768px) {
  .header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-inline: min(8.3333333333vw, 120px);
  max-width: 1440px;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .header-inner {
    background-color: #F01E1E;
    gap: 0;
    padding-inline: 20px 12px;
    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;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@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: 224px;
}
@media (max-width: 1024px) {
  .header-main-logo {
    width: 190px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-grow: 1;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .header-nav {
    padding-inline: 20px;
    padding-block: 32px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    position: absolute;
    top: 60px;
    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;
  }
}

.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: 10px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .header-nav-item + .header-nav-item::before {
    content: none;
  }
}

.header-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 16px;
}
@media (min-width: 768px) {
  .header-nav-link {
    padding: 4px 13px;
    display: inline-flex;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-nav-link {
    padding-inline: 8px;
  }
}
.header-nav-link img {
  display: block;
  width: auto;
  height: 14px;
}
@media (min-width: 768px) {
  .header-nav-link img {
    height: 13px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-nav-link img {
    height: 13px;
  }
}

.header-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 200px;
  height: 40px;
  border-radius: 999px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .header-button {
    margin-block-start: 14px;
    height: 32px;
  }
}

.header-button-text {
  display: block;
  width: auto;
  height: 15px;
}
@media (max-width: 1024px) {
  .header-button-text {
    height: 14px;
  }
}

img[src$=".svg"].header-button-arrow {
  width: 16px;
  height: 16px;
}
@media (max-width: 1024px) {
  img[src$=".svg"].header-button-arrow {
    transform: translateY(1px);
  }
}

.header-menu {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  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: 44px;
    min-height: 44px;
    padding: 0;
    position: relative;
  }
}

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

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

.present-notice {
  background-color: #FAFA28;
  border-block: 1px solid #333333;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .present-notice {
    min-height: 50px;
  }
}

.present-notice-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .present-notice-inner {
    gap: 16px;
    padding-inline-end: 60px;
  }
}

.present-notice-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .present-notice-icon {
    width: 24px;
    height: 24px;
  }
}

.present-notice-text {
  display: block;
  width: 300px;
}
@media (min-width: 768px) {
  .present-notice-text {
    max-width: 780px;
    width: 100%;
  }
}
.present-notice-text img {
  display: block;
  width: 100%;
}

.present-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .present-cta {
    gap: 22px;
  }
}

.present-cta-text {
  text-align: center;
}
.present-cta-text img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: auto;
}

.present-cta-button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
.present-cta-button img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .present-cta-button {
    max-width: 780px;
  }
  .present-cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/takuhaimeiji/biz/present/assets/img/btn_cta_pc-hover.png") no-repeat center/100% auto;
    opacity: 0;
    transition: opacity 0.2s;
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .present-cta-button:hover {
    opacity: 1;
  }
  .present-cta-button:hover::after {
    opacity: 1;
  }
}
.present-button {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0;
}
@media (min-width: 768px) {
  .present-button {
    max-width: 580px;
  }
}
.present-button img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .present-button {
    position: relative;
  }
  .present-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: no-repeat center/100% auto;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .present-button.-apply::after {
    background-image: url("/takuhaimeiji/biz/present/assets/img/text_button-apply_pc-hover.png");
  }
  .present-button.-detail::after {
    background-image: url("/takuhaimeiji/biz/present/assets/img/text_button-detail_pc-hover.png");
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .present-button:hover::after {
    opacity: 1;
  }
}

.present-kv {
  position: relative;
  background-color: #fff;
  padding-block: 32px 72px;
}
@media (min-width: 768px) {
  .present-kv {
    padding-block: 43px 100px;
  }
}

.present-kv-inner {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .present-kv-inner {
    padding-inline: min(8.3333333333vw, 120px);
  }
}

.present-kv-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
@media (min-width: 768px) {
  .present-kv-head {
    justify-content: flex-start;
  }
}

.present-kv-title {
  flex: 0 1 280px;
  min-width: min(283px, 100% - 70px);
  margin: 0;
  padding-block-start: 0;
}
@media (min-width: 768px) {
  .present-kv-title {
    flex: 0 1 768px;
    width: 768px;
    max-width: calc(100% - 100px);
    margin-inline-start: min(93px, 6.4583333333vw);
    padding-block-start: 0;
  }
}
.present-kv-title img,
.present-kv-title picture {
  display: block;
  width: 100%;
}

.present-kv-product {
  flex-shrink: 0;
  width: 80px;
  transform: translateX(-5px);
}
@media (min-width: 768px) {
  .present-kv-product {
    transform: none;
    position: absolute;
    right: -45px;
    top: 13px;
    width: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-kv-product {
    transform: none;
    top: -10px;
    right: -3.125vw;
    width: 11.1111111111vw;
  }
}

.present-kv-text {
  margin-block-start: 14px;
}
@media (min-width: 768px) {
  .present-kv-text {
    margin-block-start: 10px;
    margin-inline-start: 14px;
  }
}
.present-kv-text img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: 154px;
}
@media (min-width: 768px) {
  .present-kv-text img {
    height: 96px;
  }
}

.present-kv-note {
  margin-block-start: 20px;
  padding: 12px 20px 6px;
  border-block: 2px solid #F0E6D6;
  background-color: #fff;
}
@media (min-width: 768px) {
  .present-kv-note {
    max-width: 670px;
    margin-inline: auto;
    margin-block-start: 28px;
    padding: 11px 20px 9px;
  }
}
.present-kv-note img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: auto;
}

.present-kv-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-block-start: 30px;
  gap: 16px 10px;
}
@media (max-width: 767px) {
  .present-kv-badges {
    margin-block-start: 28px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
  }
}
@media (min-width: 768px) {
  .present-kv-badges {
    gap: 10px 38px;
  }
}

.present-kv-badge {
  margin-inline: auto;
}
@media (max-width: 767px) {
  .present-kv-badge:nth-child(1) {
    grid-column: 1 / -1;
    margin: 0;
    width: 228px;
    height: 65px;
  }
  .present-kv-badge:nth-child(2) {
    margin: 0;
    width: 175px;
    height: 56px;
  }
  .present-kv-badge:nth-child(3) {
    margin: 0;
    width: 165px;
    height: 56px;
  }
}
@media (min-width: 768px) {
  .present-kv-badge:nth-child(1) {
    margin: 0;
    width: auto;
    height: 83px;
  }
  .present-kv-badge:nth-child(2) {
    margin: 0;
    width: auto;
    height: 83px;
  }
  .present-kv-badge:nth-child(3) {
    margin: 0;
    width: auto;
    height: 83px;
  }
}

.present-kv-caption {
  margin-block-start: 16px;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 280px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .present-kv-caption {
    margin-inline: revert-layer;
    margin-block-start: 13px;
    text-align: center;
    max-width: 100%;
  }
}

.present-kv-cta {
  margin-block-start: 33px;
}
@media (min-width: 768px) {
  .present-kv-cta {
    margin-block-start: 32px;
  }
}

.present-about {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.present-about-bg {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: 82px 68px;
}
@media (min-width: 768px) {
  .present-about-bg {
    padding-block: 99px 100px;
  }
}
.present-about-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 13.3333333333vw;
  background-image: url("/takuhaimeiji/biz/present/assets/img/bg_about-top_sp.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  .present-about-bg::before {
    width: 1440px;
    height: 173px;
    background-image: url("/takuhaimeiji/biz/present/assets/img/bg_about-top_pc.svg");
  }
}
@media screen and (min-width: 1441px) {
  .present-about-bg::before {
    width: 100%;
    height: 12.0138888889vw;
  }
}
.present-about-bg::after {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 13.3333333333vw);
  background-color: #F01E1E;
}
@media (min-width: 768px) {
  .present-about-bg::after {
    height: calc(100% - 173px);
  }
}
@media screen and (min-width: 1441px) {
  .present-about-bg::after {
    height: calc(100% - 11.8055555556vw);
  }
}

.present-about-inner {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .present-about-inner {
    padding-inline: min(8.3333333333vw, 120px);
  }
}

.present-about-target {
  position: relative;
  display: table;
  margin-inline: auto;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .present-about-target {
    padding: 14px 30px 10px;
    border-radius: 23px;
  }
}
.present-about-target img {
  display: block;
  width: auto;
  height: 14px;
}
@media (min-width: 768px) {
  .present-about-target img {
    height: auto;
  }
}
.present-about-target::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% -2px;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}

.present-about-head {
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .present-about-head {
    margin-inline: calc(-1 * min(8.3333333333vw, 120px));
    padding-inline: calc(200px + min(8.3333333333vw, 90px));
  }
}

.present-about-catch {
  margin-block-start: 31px;
}
@media (min-width: 768px) {
  .present-about-catch {
    margin-block-start: 32px;
  }
}
.present-about-catch img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: 19px;
}
@media (min-width: 768px) {
  .present-about-catch img {
    height: auto;
  }
}

.present-about-title {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  margin-block-start: 8px;
}
@media (min-width: 768px) {
  .present-about-title {
    max-width: 615px;
    margin-block-start: 18px;
  }
}

.present-about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-block-start: 28px;
}
@media (min-width: 768px) {
  .present-about-visual {
    display: contents;
    margin-block-start: 0;
  }
}

.present-about-products img {
  display: block;
  width: 100%;
  height: auto;
}
.present-about-products.-left {
  z-index: 1;
  width: 70px;
  transform: translate(10px, 10px);
}
@media (min-width: 768px) {
  .present-about-products.-left {
    position: absolute;
    left: 130px;
    top: 64px;
    transform: none;
    width: 104px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-about-products.-left {
    transform: none;
    left: 9.0277777778vw;
    width: 7.2222222222vw;
  }
}
.present-about-products.-right {
  z-index: 1;
  width: 68px;
  transform: translate(-10px, 10px);
}
@media (min-width: 768px) {
  .present-about-products.-right {
    position: absolute;
    right: 130px;
    top: 62px;
    transform: none;
    width: 102px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-about-products.-right {
    transform: none;
    right: 9.0277777778vw;
    width: 7.0833333333vw;
  }
}

.present-about-circle {
  flex-shrink: 0;
  width: 90px;
}
@media (min-width: 768px) {
  .present-about-circle {
    width: 110px;
  }
}
.present-about-circle img {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .present-about-circle.-free {
    position: absolute;
    left: 202px;
    top: 9px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-about-circle.-free {
    left: 14.0277777778vw;
  }
}
@media (max-width: 767px) {
  .present-about-circle.-price {
    margin-inline-start: 4px;
  }
}
@media (min-width: 768px) {
  .present-about-circle.-price {
    position: absolute;
    right: 204px;
    top: 9px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-about-circle.-price {
    right: 14.1666666667vw;
  }
}

.present-about-text {
  margin-block-start: 26px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-about-text {
    margin-block-start: 42px;
    font-size: 16px;
  }
}

.present-about-merit-title {
  margin-block-start: 27px;
}
@media (min-width: 768px) {
  .present-about-merit-title {
    margin-block-start: 31px;
  }
}
.present-about-merit-title img {
  display: block;
  margin-inline: auto;
  width: auto;
  height: 27px;
}
@media (min-width: 768px) {
  .present-about-merit-title img {
    height: 36px;
  }
}

.present-about-merits {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-block-start: 12px;
}
@media (min-width: 768px) {
  .present-about-merits {
    gap: 26px;
    margin-block-start: 10px;
  }
}

.present-about-merit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid #333333;
  border-radius: 30px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .present-about-merit {
    min-height: 56px;
    padding: 12px 40px;
  }
}
.present-about-merit {
  box-shadow: 4px 4px 0 0 #FAFA28, 4px 4px 0 1px #333333;
}
.present-about-merit img {
  display: block;
  width: auto;
  height: 15px;
}
@media (min-width: 768px) {
  .present-about-merit img {
    height: 21px;
  }
}
.present-about-merit picture img {
  height: 36px;
}
@media (min-width: 768px) {
  .present-about-merit picture img {
    height: 21px;
  }
}

.present-about-brands {
  max-width: 420px;
  margin-inline: auto;
  margin-block-start: 36px;
  padding: 27px 20px 29px;
  border-radius: 16px;
  background-color: #fff;
  color: #333333;
  text-align: center;
}
@media (min-width: 768px) {
  .present-about-brands {
    margin-block-start: 42px;
    max-width: 1000px;
    padding: 39px 75px 42px;
  }
}

.present-about-brands-title img {
  display: block;
  margin-inline: auto;
  width: auto;
  height: 17px;
}
@media (min-width: 768px) {
  .present-about-brands-title img {
    height: auto;
  }
}

.present-about-brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin-block-start: 17px;
}
@media (min-width: 768px) {
  .present-about-brands-list {
    flex-wrap: nowrap;
    gap: 6px;
    margin-block-start: 18px;
  }
}
.present-about-brands-list li {
  height: 47px;
}
@media (min-width: 768px) {
  .present-about-brands-list li {
    height: 84px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-about-brands-list li {
    height: 5.8333333333vw;
  }
}
.present-about-brands-list img {
  width: auto;
  height: 100%;
}

.present-about-caption {
  margin-block-start: 20px;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-about-caption {
    margin-block-start: 20px;
    font-size: 13px;
  }
}

.present-worries {
  position: relative;
  background-color: #F0E6D6;
  padding-block: 20px 55px;
}
@media (min-width: 768px) {
  .present-worries {
    padding-block: 50px 100px;
  }
}

.present-worries-title img {
  max-height: none;
  width: 292px;
  height: auto;
  vertical-align: top;
}
@media (min-width: 768px) {
  .present-worries-title img {
    width: 770px;
    max-width: 100%;
    translate: -15px 0;
  }
}

.present-worries-body {
  position: relative;
  display: grid;
  grid-template-columns: min(333px, 23.125vw) min(340px, 23.6111111111vw) min(358px, 24.8611111111vw);
  justify-content: start;
  align-items: start;
  column-gap: min(23px, 1.5972222222vw);
  margin-block-start: 37px;
  margin-inline-start: min(74px, 5.1388888889vw);
}

.present-worries-illust {
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .present-worries-illust {
    transform: translateY(10px);
  }
}
.present-worries-illust img {
  display: block;
  width: 100%;
  height: auto;
}

.present-worries-list {
  display: flex;
  flex-direction: column;
}
.present-worries-list.-left {
  align-items: flex-end;
  gap: 16px;
  padding-block-start: 8px;
}
.present-worries-list.-right {
  align-items: flex-start;
  gap: 28px;
  padding-inline-start: min(18px, 1.25vw);
}
.present-worries-list.-left .present-worries-item:nth-child(2) {
  margin-inline-end: min(86px, 5.9722222222vw);
}
.present-worries-list.-right .present-worries-item:nth-child(2) {
  margin-inline-start: min(110px, 7.6388888889vw);
}

.present-worries-item {
  flex-shrink: 0;
}
.present-worries-item img {
  display: block;
  height: auto;
  max-width: none;
}
.present-worries-item.-item1 img {
  width: min(332px, 23.0555555556vw);
}
.present-worries-item.-item2 img {
  width: min(322px, 22.3611111111vw);
}
.present-worries-item.-item3 img {
  width: min(268px, 18.6111111111vw);
}
.present-worries-item.-item4 img {
  width: min(358px, 24.8611111111vw);
}
.present-worries-item.-item5 img {
  width: min(268px, 18.6111111111vw);
}
.present-worries-item.-item6 img {
  width: min(308px, 21.3888888889vw);
}

.present-worries-sp {
  max-width: 356px;
  margin-inline: auto;
  margin-block-start: 17px;
}
.present-worries-sp img {
  display: block;
  width: 100%;
  height: auto;
}

.present-solve {
  position: relative;
  background-color: #F5F5F0;
  padding-block: 82px 70px;
}
@media (min-width: 768px) {
  .present-solve {
    padding-block: 141px 96px;
  }
}
.present-solve::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  border-style: solid;
  border-width: 28px 45px 0 45px;
  border-color: #F0E6D6 transparent transparent transparent;
}
@media (min-width: 768px) {
  .present-solve::before {
    border-width: 40px 82px 0 82px;
  }
}

.present-solve-title {
  padding-inline: 20px;
}
.present-solve-title img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: 108px;
  max-height: none;
}
@media (min-width: 768px) {
  .present-solve-title img {
    height: 49px;
  }
}

.present-solve-list {
  display: flex;
  gap: 20px;
  margin-block-start: 41px;
  padding-inline: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.present-solve-list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .present-solve-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1240px;
    padding-inline: 20px;
    margin-inline: auto;
    margin-block-start: 60px;
    overflow: visible;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-solve-list {
    gap: 2.0833333333vw;
  }
}

.present-solve-item {
  position: relative;
  flex-shrink: 0;
  width: 330px;
  padding: 40px 20px 30px;
  border-radius: 30px;
  background-color: #fff;
  scroll-snap-align: center;
  overflow: hidden;
  border: 1px solid #000;
}
@media (min-width: 768px) {
  .present-solve-item {
    width: auto;
    padding: 45px 34px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-solve-item {
    padding-inline: 2.3611111111vw;
  }
}

.present-solve-num {
  position: absolute;
  right: 18px;
  top: 20px;
  width: 128px;
}
@media (min-width: 768px) {
  .present-solve-num {
    width: 147px;
  }
}

.present-solve-label {
  position: relative;
  display: table;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #F01E1E;
}
@media (max-width: 767px) {
  .present-solve-label {
    margin-inline-start: 10px;
  }
}
@media (min-width: 768px) {
  .present-solve-label {
    padding: 6px 11px;
  }
}
.present-solve-label img {
  display: block;
  width: auto;
  height: 13px;
}
@media (min-width: 768px) {
  .present-solve-label img {
    height: auto;
  }
}

.present-solve-item-title {
  position: relative;
  margin-block-start: 17px;
}
@media (max-width: 767px) {
  .present-solve-item-title {
    margin-inline-start: 10px;
  }
}
@media (min-width: 768px) {
  .present-solve-item-title {
    margin-block-start: 23px;
  }
}
.present-solve-item-title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 54px;
}
@media (min-width: 768px) {
  .present-solve-item-title img {
    height: auto;
  }
}

.present-solve-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  height: 134px;
  margin-block-start: 20px;
}
@media (min-width: 768px) {
  .present-solve-visual {
    height: 194px;
  }
}
.present-solve-visual.-woman, .present-solve-visual.-man {
  height: 190px;
}
@media (min-width: 768px) {
  .present-solve-visual.-woman, .present-solve-visual.-man {
    height: 194px;
  }
}
.present-solve-visual img {
  width: auto;
  max-height: 100%;
}
.present-solve-visual.-products img:not(.present-solve-balloon) {
  width: 100%;
  max-width: 245px;
}
@media (min-width: 768px) {
  .present-solve-visual.-products img:not(.present-solve-balloon) {
    max-width: 292px;
    margin-block-end: 23px;
  }
}
.present-solve-visual.-woman img {
  max-width: 260px;
}
@media (min-width: 768px) {
  .present-solve-visual.-woman img {
    max-width: 299px;
  }
}
.present-solve-visual.-man img {
  max-width: 187px;
}

.present-solve-visual .present-solve-balloon {
  position: absolute;
  right: 0;
  top: 0;
  width: 96px;
}
@media (min-width: 768px) {
  .present-solve-visual .present-solve-balloon {
    right: 10px;
    top: 8px;
    width: 117px;
  }
}

.present-solve-text {
  margin-block-start: 20px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-solve-text {
    margin-block-start: 20px;
    font-size: 16px;
  }
}
.present-solve-text sub {
  bottom: auto;
  top: -0.3em;
}

.present-solve-caption {
  margin-block-start: 10px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-solve-caption {
    font-size: 13px;
  }
}

.present-solve-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-block-start: 10px;
}
@media (min-width: 768px) {
  .present-solve-dots {
    display: none;
  }
}
.present-solve-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #333333;
  background-color: #fff;
  transition: background-color 0.2s;
}
.present-solve-dots li.is-active {
  background-color: #333333;
}

.present-solve-cta {
  margin-block-start: 33px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .present-solve-cta {
    margin-block-start: 64px;
  }
}

.present-reason {
  background-color: #fff;
  padding-block: 77px 60px;
}
@media (min-width: 768px) {
  .present-reason {
    padding-block: 106px 98px;
  }
}

.present-reason-lead {
  margin-block-start: 36px;
}
@media (min-width: 768px) {
  .present-reason-lead {
    margin-block-start: 38px;
  }
}

.present-reason-block {
  position: relative;
  margin-block-start: 46px;
  padding: 51px 0 30px;
}
@media (min-width: 768px) {
  .present-reason-block {
    margin-block-start: 60px;
    padding: 54px 60px 58px;
  }
}
.present-reason-block + .present-reason-block {
  margin-block-start: 42px;
}
@media (min-width: 768px) {
  .present-reason-block + .present-reason-block {
    margin-block-start: 66px;
  }
}

.present-reason-block-label {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -50%;
  padding: 8px 30px;
  border: 1px solid #333333;
  border-radius: 30px;
  background-color: #fff;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .present-reason-block-label {
    width: 194px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .present-reason-block-label {
    padding: 9px 40px;
    translate: -50% -53%;
  }
}
.present-reason-block-label img {
  display: block;
  width: auto;
  height: 16px;
}
@media (min-width: 768px) {
  .present-reason-block-label img {
    height: auto;
  }
}

.present-reason-block-title {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .present-reason-block-title {
    padding-inline: 0;
  }
}
.present-reason-block-title img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 102px;
}
@media (min-width: 768px) {
  .present-reason-block-title img {
    max-height: 66px;
  }
}

.present-reason-features {
  display: flex;
  gap: 20px;
  margin-block-start: 35px;
  padding-inline: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.present-reason-features::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .present-reason-features {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 338px));
    gap: 30px;
    margin-block-start: 40px;
    padding-inline: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-reason-features {
    gap: 2.0833333333vw;
  }
}

.present-reason-feature {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  padding: 32px 20px 30px;
  border-radius: 20px;
  background-color: #F0E6D6;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .present-reason-feature {
    width: 100%;
    min-width: 0;
    padding: 46px 30px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-reason-feature {
    padding-inline: 2.0833333333vw;
  }
}

.present-reason-feature-title {
  display: flex;
  align-items: center;
  height: 16px;
}
@media (min-width: 768px) {
  .present-reason-feature-title {
    height: 20px;
  }
}
.present-reason-feature-title img {
  display: block;
  width: auto;
  height: 100%;
}

.present-reason-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 10px;
  height: 120px;
}
@media (min-width: 768px) {
  .present-reason-feature-visual {
    margin-block-start: 18px;
    height: 145px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-reason-feature-visual {
    height: 10.0694444444vw;
  }
}
.present-reason-feature-visual.-image1 {
  width: 233px;
}
@media (min-width: 768px) {
  .present-reason-feature-visual.-image1 {
    width: 100%;
    max-width: 233px;
  }
}
.present-reason-feature-visual.-image2 {
  width: 203px;
}
@media (min-width: 768px) {
  .present-reason-feature-visual.-image2 {
    width: 100%;
    max-width: 203px;
  }
}
.present-reason-feature-visual.-image3 {
  width: 147px;
}
@media (min-width: 768px) {
  .present-reason-feature-visual.-image3 {
    width: 100%;
    max-width: 147px;
  }
}
.present-reason-feature-visual img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 767px) {
  .present-reason-feature-visual img {
    height: 120px;
  }
}

.present-reason-feature-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  margin-block-start: 8px;
}
@media (min-width: 768px) {
  .present-reason-feature-text {
    margin-block-start: 16px;
    font-size: 16px;
  }
}

.present-reason-merits {
  display: grid;
  gap: 20px;
  margin-block-start: 32px;
  padding-inline: 25px;
}
@media (min-width: 768px) {
  .present-reason-merits {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-block-start: 36px;
    padding-inline: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-reason-merits {
    gap: 2.0833333333vw;
  }
}

.present-reason-merit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 36px 16px 32px 17px;
  border-radius: 20px;
  background-color: #F0E6D6;
}
@media (min-width: 768px) {
  .present-reason-merit {
    padding: 45px 60px 52px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-reason-merit {
    padding-inline: 2.6041666667vw;
  }
}
@media (min-width: 768px) {
  .present-reason-merit.-wide {
    padding-block-end: 44px;
    grid-column: 1/-1;
  }
}

.present-reason-merit-title {
  width: 100%;
  padding-block-end: 10px;
  border-bottom: 1px solid #333333;
}
@media (min-width: 768px) {
  .present-reason-merit-title {
    padding-block-end: 20px;
  }
}
.present-reason-merit-title img {
  display: block;
  margin-inline: auto;
  width: auto;
  height: 16px;
}
@media (min-width: 768px) {
  .present-reason-merit-title img {
    height: auto;
  }
}

.present-reason-merit-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (min-width: 768px) {
  .present-reason-merit-list {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .-wide .present-reason-merit-list {
    flex-direction: row;
    justify-content: center;
    gap: 8.3333333333%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .-wide .present-reason-merit-list {
    gap: 20px;
  }
}

.present-reason-merit-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-reason-merit-item {
    font-size: 16px;
    line-height: 1.4;
  }
}
.present-reason-merit-item img {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  margin-block-start: 0.25em;
}

.present-reason-cta {
  margin-block-start: 39px;
}
@media (min-width: 768px) {
  .present-reason-cta {
    margin-block-start: 72px;
  }
}

.present-price {
  background-color: #F0E6D6;
  padding-block: 78px 71px;
}
@media (min-width: 768px) {
  .present-price {
    padding-block: 100px 115px;
  }
}

.present-price-lead {
  margin-block-start: 36px;
}
@media (min-width: 768px) {
  .present-price-lead {
    margin-block-start: 38px;
  }
}

.present-price-card {
  margin-block-start: 28px;
  padding: 32px 20px 27px;
}
@media (min-width: 768px) {
  .present-price-card {
    margin-block-start: 42px;
    padding: 35px 40px 33px;
  }
}
.present-price-card + .present-price-card {
  margin-block-start: 26px;
}
@media (min-width: 768px) {
  .present-price-card + .present-price-card {
    margin-block-start: 45px;
  }
}

.present-price-card-title img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 100%;
  height: 16px;
}
@media (min-width: 768px) {
  .present-price-card-title img {
    height: auto;
  }
}

.present-price-card-sub {
  margin-block-start: 14px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-price-card-sub {
    margin-block-start: 14px;
    font-size: 16px;
  }
}

.present-price-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 300px;
  margin-inline: auto;
  margin-block-start: 22px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .present-price-table {
    display: grid;
    grid-template-columns: 214fr 172fr 436fr 98fr;
    grid-template-rows: auto auto 1fr;
    align-items: stretch;
    max-width: 934px;
    margin-block-start: 18px;
  }
}

.present-price-col {
  display: flex;
  gap: 2px;
}
@media (min-width: 768px) {
  .present-price-col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .present-price-col > .present-price-th {
    grid-row: 1/3;
  }
}
@media (min-width: 768px) {
  .present-price-col > .present-price-td {
    grid-row: 3;
  }
}

.present-price-th,
.present-price-td {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.present-price-th {
  flex-direction: row;
  align-items: baseline;
  width: 164px;
  min-height: 40px;
  padding: 11px 6px;
  background-color: #F2DCB0;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-price-th {
    min-height: 48px;
  }
}
@media (min-width: 768px) {
  .present-price-th {
    width: auto;
    height: auto;
    min-height: initial;
    padding: 16px 6px 10px;
    font-size: clamp(12px, 1.3vw, 16px);
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-price-th {
    flex-wrap: wrap;
  }
}
.present-price-th small {
  font-size: 10px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .present-price-th small {
    font-size: clamp(10px, 1vw, 13px);
    transform: translateY(1px);
  }
}

.present-price-td {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 2px;
  width: 134px;
  min-height: 40px;
  padding: 8px 6px 8px 8px;
  background-color: #FDF4DC;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-price-td {
    padding: 12px 8px;
    justify-content: center;
    min-height: 48px;
  }
}
@media (min-width: 768px) {
  .present-price-td {
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 48px;
    padding: 10px clamp(4px, 1.5vw, 10px);
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 1;
  }
}
.present-price-td strong {
  font-size: 20px;
  font-weight: inherit;
  transform: translateY(1px);
}
@media (min-width: 768px) {
  .present-price-td strong {
    font-size: clamp(20px, 2.5vw, 30px);
  }
}
.present-price-td small {
  font-size: 12px;
}
@media (min-width: 768px) {
  .present-price-td small {
    font-size: clamp(11px, 1.1vw, 16px);
    white-space: nowrap;
  }
}

.present-price-col.-detail {
  flex-direction: column;
}

.present-price-detail-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: #F2DCB0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 767px) {
  .present-price-detail-head {
    width: 26px;
    writing-mode: vertical-rl;
  }
}
@media (min-width: 768px) {
  .present-price-detail-head {
    grid-row: 1;
    min-height: 22px;
    padding-block: 1px 0;
    font-size: 13px;
    line-height: 1.4;
  }
}

.present-price-detail-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 768px) {
  .present-price-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: subgrid;
    grid-row: 2/4;
  }
}

.present-price-detail-row {
  display: flex;
  gap: 2px;
}
@media (max-width: 767px) {
  .present-price-detail-row .present-price-th {
    width: 136px;
    background-color: #FDF4DC;
  }
}
@media (min-width: 768px) {
  .present-price-detail-row {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
  .present-price-detail-row .present-price-th {
    min-height: clamp(12px, 2.4vw, 29px);
    padding-block: 1px 0;
    background-color: #FDF4DC;
  }
}

@media (max-width: 767px) {
  .present-price-col.-detail {
    flex-direction: row;
  }
  .present-price-detail-body {
    flex-grow: 1;
  }
}
.present-price-caption {
  margin-block-start: 10px;
  font-size: 11px;
  line-height: 1.4;
  max-width: 300px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .present-price-caption {
    text-indent: -1em;
    padding-inline-start: 1em;
  }
  .present-price-caption + .present-price-caption {
    margin-block-start: 0;
  }
}
@media (min-width: 768px) {
  .present-price-caption {
    max-width: initial;
    margin-block-start: 11px;
    font-size: 13px;
    text-align: center;
  }
}

.present-price-calc {
  max-width: 300px;
  margin-inline: auto;
  margin-block-start: 20px;
}
@media (min-width: 768px) {
  .present-price-calc {
    max-width: 890px;
    margin-block-start: 20px;
  }
}

.present-price-calc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border-radius: 14px;
  background-color: #F2DCB0;
}
@media (min-width: 768px) {
  .present-price-calc-row {
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
  }
}

.present-price-calc-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 5px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .present-price-calc-box {
    max-width: 382px;
    padding: 16px 20px 12px;
  }
}

.present-price-calc-label {
  display: inline-block;
  min-width: 105px;
  padding: 2px 10px;
  border-radius: 30px;
  background-color: #E2B657;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.04em;
}
@media (min-width: 768px) {
  .present-price-calc-label {
    width: 100%;
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0;
    padding-block: 2px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .present-price-calc-label {
    padding-block: 3px 0;
  }
}

.present-price-calc-value {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.present-price-calc-value strong {
  font-size: 20px;
  font-weight: inherit;
}
@media (min-width: 768px) {
  .present-price-calc-value strong {
    font-size: clamp(24px, 2.6vw, 30px);
  }
}
@media (min-width: 768px) {
  .present-price-calc-value {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.2;
  }
}

.present-price-calc-note {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 600;
}
@media (min-width: 768px) {
  .present-price-calc-note {
    font-size: clamp(12px, 1.2vw, 16px);
    line-height: 1.6;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
}

.present-price-calc-minus {
  flex-shrink: 0;
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background-color: #F01E1E;
}
@media (min-width: 768px) {
  .present-price-calc-minus {
    width: 40px;
    height: 6px;
  }
}

.present-price-calc-arrow {
  width: 20px;
  height: 12px;
  margin-inline: auto;
  margin-block-start: -1px;
  background-color: #F2DCB0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
  .present-price-calc-arrow {
    width: 50px;
    height: 18px;
    margin-block: -1px 8px;
  }
}

.present-price-calc-result {
  padding: 10px;
  border-radius: 14px;
  background-color: #F2DCB0;
  margin-block-start: 10px;
}
@media (min-width: 768px) {
  .present-price-calc-result {
    padding: 18px;
    border-radius: 20px;
    margin-block-start: 0;
  }
}

.present-price-calc-result-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 12px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .present-price-calc-result-inner {
    gap: 10px;
    padding: 16px 20px 20px;
  }
}

.present-price-calc-result-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .present-price-calc-result-main {
    flex-direction: row;
    gap: 16px;
  }
}
.present-price-calc-result-main .present-price-calc-label {
  min-width: 0;
  padding-inline: 60px;
}
@media (min-width: 768px) {
  .present-price-calc-result-main .present-price-calc-label {
    width: auto;
    padding-inline: clamp(30px, 4vw, 60px);
  }
}
.present-price-calc-result-main .present-price-calc-value strong {
  font-size: 32px;
}
@media (min-width: 768px) {
  .present-price-calc-result-main .present-price-calc-value strong {
    font-size: clamp(32px, 3.2vw, 42px);
  }
}

.present-price-calc-result-note {
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}
@media (min-width: 768px) {
  .present-price-calc-result-note {
    font-size: 16px;
    line-height: 1.6;
  }
}

.present-price-cta {
  margin-block-start: 39px;
}
@media (min-width: 768px) {
  .present-price-cta {
    margin-block-start: 64px;
  }
}

.present-flow {
  background-color: #F5F5F0;
  padding-block: 76px 70px;
}
@media (min-width: 768px) {
  .present-flow {
    padding-block: 106px 100px;
  }
}

.present-flow-lead {
  margin-block-start: 36px;
}
@media (min-width: 768px) {
  .present-flow-lead {
    margin-block-start: 38px;
  }
}

.present-flow .present-heading img {
  width: 283px;
}
@media (min-width: 768px) {
  .present-flow .present-heading img {
    width: auto;
  }
}

.present-flow-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  max-width: 355px;
  margin-inline: auto;
  margin-block-start: 19px;
}
@media (min-width: 768px) {
  .present-flow-list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    max-width: none;
    margin-block-start: 40px;
  }
}

.present-flow-item {
  width: 100%;
}
@media (min-width: 768px) {
  .present-flow-item {
    width: auto;
    flex: 0 1 310px;
  }
  .present-flow-item:nth-child(3) {
    flex-basis: 293px;
  }
}
.present-flow-item img {
  display: block;
  width: 100%;
  height: auto;
}

.present-flow-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-block-start: 30px;
}
@media (min-width: 768px) {
  .present-flow-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-block-start: 60px;
  }
  .present-flow-buttons > .present-button {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (any-hover: hover) {
  a.present-button:hover {
    opacity: 1;
  }
}

.present-flow-note {
  width: 100%;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  max-width: 350px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .present-flow-note {
    text-indent: -1em;
    padding-inline-start: 1em;
  }
}
.present-flow-note + .present-button {
  margin-block-start: 10px;
}
@media (min-width: 768px) {
  .present-flow-note + .present-button {
    margin-block-start: 0;
  }
}
@media (min-width: 768px) {
  .present-flow-note {
    max-width: initial;
    order: 3;
    margin-block-start: -20px;
    font-size: 13px;
    text-align: center;
  }
}
.present-flow-note strong {
  color: #F01E1E;
  font-weight: inherit;
}

.present-faq {
  background-color: #fff;
  padding-block: 77px 72px;
}
@media (min-width: 768px) {
  .present-faq {
    padding-block: 103px 100px;
  }
}
.present-faq .present-heading img {
  width: 213px;
}
@media (min-width: 768px) {
  .present-faq .present-heading img {
    width: auto;
  }
}

.present-faq-list {
  margin-block-start: 36px;
}
@media (min-width: 768px) {
  .present-faq-list {
    margin-block-start: 38px;
  }
}

.present-faq-item {
  border: 1px solid #333333;
  background-color: #fff;
  border-radius: 32px;
}
@media (min-width: 768px) {
  .present-faq-item {
    border-radius: 36px;
  }
}
.present-faq-item + .present-faq-item {
  margin-block-start: 20px;
}

.present-faq-details::details-content {
  content-visibility: unset;
  display: grid;
}
@media (prefers-reduced-motion: no-preference) {
  .present-faq-details::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
    transition-timing-function: ease;
  }
}
.present-faq-details:not([open])::details-content {
  grid-template-rows: 0fr;
}
.present-faq-details[open]::details-content {
  grid-template-rows: 1fr;
}

.present-faq-slide {
  overflow: hidden;
  min-block-size: 0;
}

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

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

.present-faq-q-badge {
  flex-shrink: 0;
  width: 26px;
  height: auto;
  margin-block-start: 0.2em;
}
@media (min-width: 768px) {
  .present-faq-q-badge {
    width: 50px;
    margin-block-start: 0;
  }
}

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

.present-faq-toggle-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.present-faq-toggle-icon img {
  display: block;
  inline-size: 20px;
  block-size: auto;
}
@media (min-width: 768px) {
  .present-faq-toggle-icon img {
    inline-size: 36px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .present-faq-toggle-icon {
    transition: transform 300ms ease;
  }
}

.present-faq-details[open] .present-faq-toggle-icon {
  transform: rotate(180deg);
}

.present-faq-answer {
  padding-block: 0 28px;
  padding-inline: 60px 28px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
@media (min-width: 768px) {
  .present-faq-answer {
    padding-inline-start: 192px;
    font-size: 20px;
  }
}
.present-faq-answer small {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .present-faq-answer small {
    font-size: 13px;
  }
}
.present-faq-answer span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .present-faq-answer span {
    font-size: 13px;
  }
}
.present-faq-answer a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .present-faq-answer a:hover {
    text-decoration: none;
  }
}

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

.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: 74px;
  }
}

.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: 600;
  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 {
  width: 100%;
  max-width: 158px;
}
@media (min-width: 768px) {
  .biz-contact-button {
    max-width: 200px;
  }
}

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

.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: 39px 50px;
    width: 222px;
  }
}

@keyframes floating-follow-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.floating {
  position: fixed;
  right: 0;
  bottom: 120px;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media (max-width: 767px) {
  .floating {
    bottom: 72px;
  }
}
.floating.is-follow {
  opacity: 1;
  pointer-events: auto;
  animation: floating-follow-fade-in 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .floating.is-follow {
    animation: none;
    opacity: 1;
  }
}
.floating.is-hidden {
  animation: none;
  opacity: 0;
  pointer-events: none;
}

.floating-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 43px;
  padding-inline: 8px 4px;
  border: 1px solid #333333;
  border-right: none;
  border-radius: 22px 0 0 22px;
  background-color: #F01E1E;
  color: #fff;
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Yu Gothic", "游ゴシック体", YuGothic, "Noto Sans JP", "Manrope", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "メイリオ", Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .floating-link {
    width: 200px;
    height: 55px;
    padding-inline: 20px 12px;
    border-radius: 35px 0 0 36px;
    font-size: 18px;
  }
}
.floating-link {
  box-shadow: 6px 5px 0 0 #FAFA28, 6px 5px 0 1px #333333;
}
@media (any-hover: hover) {
  .floating-link {
    transition: background-color 0.3s;
  }
  .floating-link:hover {
    opacity: 1;
    background-color: #C41616;
    text-decoration: none;
  }
}

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